Hacker News new | ask | show | jobs
by hrdwdmrbl 1358 days ago
Why a whole new ORM and not an SQLite adapter for an existing ORM?
1 comments

it's npm.

Jokes aside, as someone who wrote a python sqlite ORM (shameless plug: `pip install sqlitedao`), my reason was to have a minimal ORM for personal project, the entire active source is contained in one file and it works for majority of the use cases (i.e. insert_item, get_item, etc).