NPM

NPM : Node Package Manage

安装 express框架:

  1. npm install express
  2. 卸载 express框架
  3. npm uninstall express

网站查询:https://www.npmjs.com/

Package:

  1. 安装: npm init
  2. 填写基本信息
  3. 下载需要的库 npm install pkg --save

nodemon:

  1. sudo npm install -g nodemon
  2. nodemon index.js
原文地址:https://www.cnblogs.com/webarn/p/6382262.html