设置下载镜像地址
# 官方地址(推荐)npm config set registry https://registry.npmjs.com# 国内地址npm config set registry https://registry.cnpmjs.org# 淘宝npm代理(挺多报错)npm config set registry https://registry.npm.taobao.org# 安装包错误 npm ERR! Unexpected end of JSON input while parsing near...# 则切换回官方代理或者清除缓存npm cache clean --force
代理
npm config set proxy http://127.0.0.1:1080npm config delete proxy
windows
# 安装包时提示 MSBUILD : error MSB3428: 未能加载 Visual C++ 组件“VCBuild.exe”# 则需要以管理员权限运行npm install --global windows-build-toolsnpm install -g node-gyp
安装sass
binding.node 下载地址:https://github.com/sass/node-sass/releases/
安装方法:
- set SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ && npm install node-sass
- set SASS_BINARY_PATH=D:\code\nodejs\bin\win32-x64-64_binding.node && npm install node-sass