使用Node.js创建基于MVC的简单Web应用程序

时间:2016-03-07 07:36:31

标签: node.js rest model-view-controller web-applications

我是node.js的初学者,并希望使用node.js制作基于mvc的小型网络应用程序 我对MVC模型有很好的了解。 所以,有人可以给我资源链接/参考,这是逐步解释,因为我是node.js的新手。

谢谢。

1 个答案:

答案 0 :(得分:1)

你需要在你的应用程序中使用MVC了解3W(what-why-when)。

示例 - Nodejs中的Web应用程序文件夹:

  

使用ExpressJS在here和示例here中构建完整的MVC网站

/public
    /images
    /javascripts
    /stylesheets
/routes
    /index.js
    /user.js
/views
    /index.hjs
    /app.js
/package.json

关于Nodejs中MVC细节的另一条指令

  

Node.js的MVC Web框架旨在使Express更易于使用。你可以在here

中看到