express学习

安装环境

安装express

1
2
npm install express
npm install express-generator -g

创建一个名为 “helloworld” 的 Express 应用

1
express --view=pug helloworld

为 helloworld 应用安装所有依赖

1
2
cd helloworld
npm install

运行应用(Linux/macOS 环境)

1
DEBUG=server:* npm start

Windows环境

1
SET DEBUG=helloworld:* & npm start