*天学会 node.js (三)---命令

  • npm -v //版本号,测试是否安装成功
  • npm install
    npm install express -g
  • npm err! Error: connect ECONNREFUSED 127.0.0.1:8087
    解决方法: npm config set proxy null
  • npm help
  • npm update //更新当前目录的node_modules 目录里的对应模块
  • npm update -g //更新全局安装的对应模块
  • npm cache clear // 清空npm本地缓存,用于使用相同版本号发布新版本代码的情况
  • npm cache clean // 用于清空以前安装的node_modules
  • npm install // 用于安装 node_modules
  • npm adduser // 在npm 资源库中注册用户
  • npm publish // 发布模块
  • npm unpublish @// 撤销自己发布过的某个版本代码

你可能感兴趣的:(*天学会 node.js (三)---命令)