“Vue 创建脚手架”的版本间的差异
跳到导航
跳到搜索
Jihongchang(讨论 | 贡献) |
Jihongchang(讨论 | 贡献) |
||
第5行: | 第5行: | ||
注意:可以先配置 npm 淘宝镜像,以免下载缓慢:<syntaxhighlight lang="powershell"> | 注意:可以先配置 npm 淘宝镜像,以免下载缓慢:<syntaxhighlight lang="powershell"> | ||
− | npm config set registry https://registry.npm.taobao.org | + | C:\WINDOWS\system32>npm config get registry |
+ | https://registry.npmjs.org/ | ||
+ | |||
+ | C:\WINDOWS\system32>npm config set registry https://registry.npm.taobao.org | ||
+ | |||
+ | C:\WINDOWS\system32>npm config get registry | ||
+ | https://registry.npm.taobao.org | ||
</syntaxhighlight> | </syntaxhighlight> | ||
第一步(仅第一次执行):全局安装 @vue/cli<syntaxhighlight lang="powershell"> | 第一步(仅第一次执行):全局安装 @vue/cli<syntaxhighlight lang="powershell"> | ||
npm install -g @vue/cli | npm install -g @vue/cli | ||
− | </syntaxhighlight> | + | </syntaxhighlight>'''坑''':2024-08-09,执行如下:<syntaxhighlight lang="powershell"> |
+ | C:\WINDOWS\system32>npm install -g @vue/cli | ||
+ | npm ERR! code CERT_HAS_EXPIRED | ||
+ | npm ERR! errno CERT_HAS_EXPIRED | ||
+ | npm ERR! request to https://registry.npm.taobao.org/@vue%2fcli failed, reason: certificate has expired | ||
+ | |||
+ | npm ERR! A complete log of this run can be found in: C:\Users\Administrator\AppData\Local\npm-cache\_logs\2024-08-08T23_00_40_398Z-debug-0.log | ||
+ | </syntaxhighlight>原因是 <nowiki>https://registry.npm.taobao.org</nowiki> 这个域名不用了,用浏览器访问就能发现,已经重定向到 https://registry.npmmirror.com/ |
2024年8月8日 (四) 23:07的版本
https://www.bilibili.com/video/BV1Zy4y1K7SH?p=61
Vue 脚手架(Vue CLI,Vue Command Line Interface)是 Vue 官方提供的标准化开发工具(开发平台) https://cli.vuejs.org/zh/
注意:可以先配置 npm 淘宝镜像,以免下载缓慢:
C:\WINDOWS\system32>npm config get registry
https://registry.npmjs.org/
C:\WINDOWS\system32>npm config set registry https://registry.npm.taobao.org
C:\WINDOWS\system32>npm config get registry
https://registry.npm.taobao.org
第一步(仅第一次执行):全局安装 @vue/cli
npm install -g @vue/cli
坑:2024-08-09,执行如下:
C:\WINDOWS\system32>npm install -g @vue/cli
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/@vue%2fcli failed, reason: certificate has expired
npm ERR! A complete log of this run can be found in: C:\Users\Administrator\AppData\Local\npm-cache\_logs\2024-08-08T23_00_40_398Z-debug-0.log
原因是 https://registry.npm.taobao.org 这个域名不用了,用浏览器访问就能发现,已经重定向到 https://registry.npmmirror.com/