DEV Community

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

Collapse
 
capaj profile image
Jiri Spac

I've had really nice experience using Objection.js in production with postgre. Relational expresssions are really a killer feature. We have almost 80 tables so you can imagine we use it quite a lot.
We're running a mid-sized CMS with 100k users on AWS.
We experimented also with exposing our objection.js models onto GraphQL using decapi and it works flawlessly!
I personally hope I never have to work on REST api again.