60 个 Vue 常见问题汇总及解决方案
# Q1:安装超时 (install timeout)
方案有这么些:
cnpm : 国内对npm的镜像版本 | |
/* | |
cnpm website: https://npm.taobao.org/ | |
*/ | |
npm install -g cnpm --registry=https://registry.npm.taobao.org | |
//cnpm 的大多命令跟 npm 的是一致的,比如安装,卸载这些 | |
yarn 和 npm 改源大法 | |
// 使用 nrm 模块 : www.npmjs.com/package/nrm | |
npm config : npm config set registry https://registry.npm.taobao.org | |
yarn config : yarn config set registry https://registry.npm.taobao.org |









