react创建项目命令
未知
2024-08-19 20:54:32
0
npm install -g create-react-app
creat-react-app my-app
默认库:
https://registry.npmjs.org/

npm config set registry https://registry.npm.taobao.org -- 配置后可通过下面方式来验证是否成功 npm config get registry -- 显示出上述地址的话就是更换成功

npm config set registry https://registry.npmmirror.com/ ---阿里镜像源
npm config set registry https://npm.tuna.tsinghua.edu.cn----清华镜像源
-- 配置后可通过下面方式来验证是否成功 npm config get registry -- 显示出上述地址的话就是更换成功 npm config set proxy http://<proxy-server>:<port> npm config set https-proxy http://<proxy-server>:<port>

清理npm缓存

有时候,清理npm的缓存可以解决一些奇怪的连接问题:

npm cache clean --force

报错:
network This is a problem related to network connectivity

解决方案:
①进行代理设置为false,如下命令

npm config set proxy false

②npm缓存清理,如下命令

npm cache verify

③再次执行npm install命令即可解决此问题

报错:

npm ERR! the command again as root/Administrator.

在系统里搜索cmd然后选择以管理员身份运行即可

 

相关内容

react菜单menu点击...
导航菜单点击菜单项有时不管用,样式修改不了。
2024-08-22 09:54:54
react创建项目命令
react创建项目命令
2024-08-19 20:54:32
react console...
Unchecked runtime.lastError: Coul...
2024-07-26 21:41:06

热门资讯

JavaScript获取当前协... JavaScript获取当前协议,域名,路径
解决Phpcms V9手机门户... 第一步:开启手机网站。位置:模块 》手机门户 》 添加手机站点,如果模块里面没有手机门户,那么就在模...
layui tooltip提示... 在layui表单中,我们想把一个标签做出提示,以标明这个表单元素是做什么有什么功能时,就可以用上提...
layui中出错Unexpec... layui中出错Unexpected identifier
如何在html中禁止复制文字 问题描述: 如何禁止别人复制自己的文章? 解决办法: 在body标签中添加以下代码: onconte...
JS实现html打印功能,打印... !DOCTYPE htmlhtmlhead meta charset=utf-8 title打印功能...
bootstrap 图片文字居... 问题描述: 让图片和文字居中显示。 解决办法: !-- style--.navbars img{ m...
bootstrap图片排版布局 问题描述: 在使用bootstrap的时候,出现了这样的问题。 排版对不齐。 解决办法: 通过上图发...
手机端底部定位 问题描述: 需要实现的效果 解决办法: !-- 底部 -- div class=layui-row ...