Express学习笔记
1:安装express
通过npm+package.json的方式更新express模块
2:express三大对象 app,req,res
3:常用外部中间件 Morgan,body-parser,method-override,Compression,express.static,cookie-parser, session
4:MVC模式
通过文件夹结构来实施,
水平结构:app(controller,module,router,views)+ config + public(img,css) + package.json + server.js
垂直结构:功能别先分割为多个模块,每个模块里,按照Client+Server的方式
Module 1 + Module 2 + ... + package.json + server.js
Module 1 (Client + Server)
Server (controller,module,router,views,config)
Client(controller,views,config,css,img...)