1、安装npm install时,长时间停留在fetchMetadata的解决方法
更换成淘宝镜像
npm config set registry https://registry.npm.taobao.org
– 配置后可通过下面方式来验证是否成功
npm config get registry
– 或npm info express
2、npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
电脑资源问题,需配置淘宝镜像,同上
3、npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.13 (node_modules@vue\cli\node_modules\fsevents):
fsevents是苹果系统的可选依赖,在windows环境,可以忽略这个警告没什么影响的。
4、npm WARN @vue/compiler-sfc@3.0.0-rc.7 requires a peer of vue@3.0.0-rc.7 but none is installed. You must install peer dependencies yourself.
手动安装 npm vue@3.0.0-rc.7
5、npm WARN saveError ENOENT: no such file or directory, open ‘C:\Users…\package.json’
由于没有package.json文件
npm init
创建package.json 文件