SimpleDao
nodejs npm包安装
2019-05-06, 访问数: 946

设置下载镜像地址

  1. # 官方地址(推荐)
  2. npm config set registry https://registry.npmjs.com
  3. # 国内地址
  4. npm config set registry https://registry.cnpmjs.org
  5. # 淘宝npm代理(挺多报错)
  6. npm config set registry https://registry.npm.taobao.org
  7. # 安装包错误 npm ERR! Unexpected end of JSON input while parsing near...
  8. # 则切换回官方代理或者清除缓存
  9. npm cache clean --force

代理

  1. npm config set proxy http://127.0.0.1:1080
  2. npm config delete proxy

windows

  1. # 安装包时提示 MSBUILD : error MSB3428: 未能加载 Visual C++ 组件“VCBuild.exe”
  2. # 则需要以管理员权限运行
  3. npm install --global windows-build-tools
  4. npm install -g node-gyp

安装sass

binding.node 下载地址:https://github.com/sass/node-sass/releases/
安装方法: