Advice on loopback.js vs express js

Planning to build an enterprise level application using node js. Have already worked on express js for a few projects.

When researching for other possible frameworks, came across loopback js. Loopback.js, a new framework(3-4 years) built over express framework. The initial configuration and set up of the application was so quick, as i able to set up api endpoints, basic crud, acl, user auth, jwt in few hours. The documentation is bit complex and coid maintenance not good.

But for a bigger application, is loopback.js scalable and how about performance and its default ORM? With express we can write everything the way we want and in a custom way.

Need some advise and points on this. loopback.js vs express js

Leave a Comment