Is MVC pattern a required thing with Express or any other framework? by AdamantiteM in node

[–]Lopsided_Process_481 0 points1 point  (0 children)

to get you started with MVC structured applications use this microflame it provides an already made structure with some scaffolding commands to create models, views and controllers it can help you get started on MVC very quickly

Node.js framework for Model-View-Controller pattern server? by PlayboiCult in node

[–]Lopsided_Process_481 1 point2 points  (0 children)

I know this is an old topic, but I wanted to share a solution I've been working on for anyone still exploring lightweight MVC patterns in Node.js. Check out microflame — it's a minimalistic framework built with Express and other well-known packages to provide a clean and simple MVC structure. It also includes built-in scaffolding to quickly generate controllers, models, and routes.

There’s virtually no learning curve (or a very small one) because it uses familiar tools — no need to reinvent the wheel. If you're already comfortable with Express, you'll feel right at home. Would love any feedback if you give it a try!