答案 0 :(得分:6)
package.json
中的项目名称与名称模块相似时的问题原因。
要解决此问题,请将package.json
中的项目名称更改为其他名称。示例“ jsonfile-test”
{
"name": "jsonfile-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
}
}
答案 1 :(得分:0)
我认为应该是:
npm install --save json-file
不是
npm install --save jsonfile
ref:https://www.npmjs.com/package/json-file
如果这不起作用,请尝试启用权限安装-例如(在Mac上,但在Windows上等效,请检查:https://helpdeskgeek.com/free-tools-review/5-windows-alternatives-linux-sudo-command/)运行:
sudo npm install --save json-file