@wiredprairie nice to know.
For some years I was using ORMs but in the end that were too much of a hassle.
I use knex.js now, it is a middle ground between having complete string based queries to have some type safety that does not get in one's way.
@sirber sorry autocorrect screwed my comment.
I used to use orms but they caused more problems.
I was spending more time figuring out how to write a query in orm syntax where as I knew already how to do it in sql.
Query builders come to the rescue they are in between orms and plain typless sql in code.
They provide some type safety but you can use sql in your backend framework.
Knex.js is the one I use.
#knexjs #orm #sql #querybuilders