安装Node.js淘宝镜像加速器出现的问题
# 或使用如下语句解决 npm 速度慢的问题
npm install --registry=https://registry.npm.taobao.org
报错主要内容
npm ERR! enoent This is related to npm not being able to find a file...
解决方法
根据错误提示,是系统没有‘package.json’这个文件导致。这个文件的作用就是管理你本地安装的npm包。
所以我们要生成一个package.json文件,执行命令:
npm init