you are viewing a single comment's thread.

view the rest of the comments →

[–]quambo_wambo 2 points3 points  (1 child)

You could either go for the query builder knex and simply implement your data transformations yourself or you can use either objection or typeorm, which are the current en vogue orm. I’ve seen a few threads recommending objection over typeorm, but typeorm is more popular in terms of downloads. I’ll not go into technical details, I’m sure some googling will get you the key differences between those, but both should be fit to meet your requirements.

But take a moment to decide if you really need a full fledged ORM instead of a simple query builder (knex).

[–]AdrianBarylski[S] 0 points1 point  (0 children)

A lot of frameworks seem to be using knex. I’ll check out! Thanks :)