环境安装
- npm和nodeJS的安装略。
npm install express --save
Helloworld代码
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
app.listen(80, function () {
console.log('Example app listening on port 80!');
});
运行代码并访问站点
- http://localhost:3000/
node app.js
Express 应用程序生成器
npm install express-generator -g
# 安装生成一个叫myapp的程序
express --view=pug myapp
cd myapp
npm install
生成的应用程序具有以下目录结构:
.
├── app.js
├── bin
│ └── www
├── package.json
├── public
│ ├── images
│ ├── javascripts
│ └── stylesheets
│ └── style.css
├── routes
│ ├── index.js
│ └── users.js
└── views
├── error.pug
├── index.pug
└── layout.pug
7 directories, 9 files