kapilpatwa93
kapilpatwa93

Reputation: 4411

Creating Simple MVC based Web Application using Node.js

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

Answers (1)

DinhNguyen
DinhNguyen

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

Related Questions