一直在云沙箱里学习Express开发,总归还是要自己折腾一遍部署的。

MDN的教程可实在是亲妈级手把手教学:

完整的 Express 本地开发环境包括 Nodejs、NPM 包管理器和 Express 应用生成器(可选)。

折腾的环境为Ubuntu 18.04

安装node.js

  1. curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
  2. sudo apt-get install -y nodejs

检查安装:

  1. eric@ubuntu-v:~/myapp$ node -v
  2. v10.19.0
  3. eric@ubuntu-v:~/myapp$ npm -v
  4. 6.13.4

安装Express应用生成器

  • npm install express-generator -g

创建应用

  1. express helloworld
  2. cd helloworld
  3. npm install
  4. DEBUG=helloworld:* npm start

windows平台上,又尝试了一下用yarn

首先按顺序安装nodejs和yarn的msi包

  1. yarn global add express-generator
  2. express myapp
  3. cd myapp
  4. yarn install