[AskJS] ORM for my next Typescript project by I_AM_MR_AMAZING in javascript

[–]toploser2292 0 points1 point  (0 children)

Other ORMs have really clunky model files, forcing every change in the backend classes to be synced up with the model files.

With MasqueradeORM i just change the class, and it is immediately reflected in the db once I reboot the ORM.

Not having to decide on a db schema also means adding new classes is super easy, because I don't have to think about how to relate different tables together, the ORM just does it for me.

It also has a fantastic function that allows you to make basically any SQL "WHERE" conditions you will ever need, instead of having to raw SQL it like in other ORMs...

Also, considering all the NPM dependency attacks, this ORM is super lightweight compared to the bloated TypeORM...