首页
读书
网课

正文

第1个问题

husky .git can't be found报错的解决办法

原因分析

根据设计,husky安装必须在与 .git 相同的目录中运行,但可以在准备脚本期间更改目录并传递子目录

解决方法

打开web目录下的package.json文件,修改如下字段:

将"prepare": "husky install",

改成

"prepare": "cd .. && husky install web/.husky",


再次安装就成功啦。


原文链接:https://blog.csdn.net/chengyikang20/article/details/131700318





第2个问题

淘宝镜像registry.npm.taobao.org在npm时提示 certificate has expired(证书已过期)的 解决方法


今天在使用npm下载依赖的时候出现无法下载的情况

提示certificate has expired



原因

淘宝镜像原地址证书已于2024年1月22日过期

现已更换镜像地址为https://registry.npmmirror.com


解决方案

切换淘宝最新镜像地址,执行完成之后就可以正常下载依赖了


npm config set registry https://registry.npmmirror.com

1

其他镜像源

仓库名称 地址

npm 官方原始镜像 https://registry.npmjs.org/

淘宝最新 NPM 镜像 https://registry.npmmirror.com

阿里云 NPM 镜像 https://npm.aliyun.com

腾讯云 NPM 镜像 https://mirrors.cloud.tencent.com/npm/

华为云 NPM 镜像 https://mirrors.huaweicloud.com/repository/npm/

网易 NPM 镜像 https://mirrors.163.com/npm/

中科院大学开源镜像站 http://mirrors.ustc.edu.cn/

清华大学开源镜像站 https://mirrors.tuna.tsinghua.edu.cn/

     

原文链接:https://blog.csdn.net/liguangfenglucky/article/details/136183624



上一篇: 没有了
下一篇: 没有了
圣贤书院