DEV Community

Discussion on: What NodeJS SQL Query Builder/ORM should I use for my Postgres DB, and why?

Collapse
 
craigmichaelmartin profile image
craig martin

I've never been one for ORMs or Query Builders - to my mind having to learn the huge api of the query building api, and then mapping the complexity and nuance of SQL to it, is simply not worth the cost. That said, resolving raw result rows into meaningful (pure, properly structured) business objects which may have methods and dynamic properties, was of top priority, and so I wrote a library which layers on top database drivers to do so: github.com/craigmichaelmartin/sql-...