express学习 Posted on 2020-01-03 安装环境安装express 12npm install expressnpm install express-generator -g 创建一个名为 “helloworld” 的 Express 应用 1express --view=pug helloworld 为 helloworld 应用安装所有依赖 12cd helloworldnpm install 运行应用(Linux/macOS 环境) 1DEBUG=server:* npm start Windows环境 1SET DEBUG=helloworld:* & npm start