Npm使用遇到的问题解决
Posted kibana
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Npm使用遇到的问题解决相关的知识,希望对你有一定的参考价值。
0、运行项目:
1)git clone 项目
2)项目根目录执行npm install安装依赖
3)执行npm run dev启动
1、安装cnpm:
npm install -g cnpm --registry=https://registry.npm.taobao.org
参考:https://npm.taobao.org/
2、unable to verify the first certificate:
2014年2月27日,npm不再支持自签名证书。
因为npm install走的是https协议,需要通过数字证书来保证的
解决方法1:
取消ssl验证:npm config set strict-ssl false
如果还没成功,则将npm源更换为国内镜像:
npm config set registry http://registry.cnpmjs.org/
npm config set registry http://registry.npm.taobao.org/
解决方法2:
升级:npm install npm -g --ca=null
或者 npm config set ca=""
推荐使用方法1(试验npm config set strict-ssl false可行)
参考:https://www.cnblogs.com/zhaoyan001/p/8810680.html
3、安装并使用vue-cli创建项目:
安装 npm i -g @vue/cli
使用 vue ui
参考:https://www.css88.com/archives/9786
以上是关于Npm使用遇到的问题解决的主要内容,如果未能解决你的问题,请参考以下文章