问题:
mac使用vue create project 或者用vue ui创建项目的时候一直卡着不动,我是用的vue ui,提示 Failed to get response from https://registry.npmjs.org/vue-cli-version-marker
解决方案:
从上述错误猜测大概跟npm有关,想着老生常谈的镜像问题,一看,果真是npm镜像,直接修改镜像源就行了,见下图
参考资料:
1,2024年1 月,淘宝原镜像域名(http://registry.npm.taobao.org/)的 HTTPS
证书到期,旧的 npm 淘宝镜像在使用时有可能会出错。
2,npm 淘宝镜像已经从 网页链接 http://registry.npm.taobao.org/
切换到了网页链接https://registry.npmmirror.com/
旧域名也将停止服务。
临时指定淘宝镜像源--这个没有用过:
npm --registry https://registry.npmmirror.com express
永久指定淘宝镜像源:
npm config set registry https://registry.npmmirror.com