常用命令

  • npm install
  • npm uninstall
  • npm init

    换源

  • 换:npm config set registry https://registry.npm.taobao.org

  • 验证:npm config get registry
  • 如果想还原:npm config set registry https://registry.npmjs.org/

    tips

  • 在安装一个要打包到生产环境的安装包时,你应该使用 npm install --save,如果你在安装一个用于开发环境的安装包(例如,linter, 测试库等),你应该使用 npm install --save-dev。请在 npm 文档 中查找更多信息。

参考文章