Reputation: 4411
I am beginner in node.js and wanted to make small mvc based web app using node.js I have decent knowledge of MVC model. So can someone please give me resource link/reference which gives step by step explanation as I am new to node.js.
Thank you.
Upvotes: 0
Views: 1068
Reputation: 356
You need to understand 3W (what-why-when) using MVC in your app.
Example - Folder for web app in Nodejs :
Build a Complete MVC Website With ExpressJS in here and example here
/public
/images
/javascripts
/stylesheets
/routes
/index.js
/user.js
/views
/index.hjs
/app.js
/package.json
Another instruction about MVC detail in Nodejs
MVC web framework for Node.js designed to make Express easier to use. you can see in here
Upvotes: 1