当前位置: 首页>>技术教程>>正文


npm“无法解析json”

, ,

问题描述

当我尝试使用npm安装express时,总是出现以下错误:

Failed to parse json
No data, empty input at 1:1
File: /root/.npm/inherits/2.0.1/package/package.json
Failed to parse package.json data.
package.json must be actual JSON, not just JavaScript.

This is not a bug in npm.
Tell the package author to fix their package.json file. JSON.parse

我究竟做错了什么?

 sudo npm install -g express

操作系统是Ubuntu 12.04(precise)armhf

最佳办法

感谢this commentJivings

npm cache clean

解决了问题。

次佳办法

我有同样的问题,但“ npm cache clean”没有为我解决。我必须返回到package.json并意识到我在逗号中不应该出现逗号,如下所示:

},
  "devDependencies": {
    "axios": "^0.15.3",
    "bootstrap-sass": "^3.3.7",
    "cross-env": "^3.2.4",
    "jquery": "^3.1.1",
    "laravel-mix": "0.*",
    "lodash": "^4.17.4",
    "vue": "^2.1.10",
  }

在”vue…”之后,我删除了该文件,一切恢复了正常。因此值得在运行npm cache clean之前先检查package.json文件

第三种办法

在Laravel项目中:

  1. 删除’node_modules’文件夹;

  2. npm缓存清理

  3. npm更新

第四种办法

通常,此错误是由于package.json文件中的语法错误引起的。在我的情况下,缺少package.json中依赖项对象的大括号:

码 – – – – – – – – – – – – – – – –

{
  "name": "psrxjs",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC",
  "dependencies": 
    "rxjs": "^5.4.3"
  }
}

第五种办法

运行npm install时,我也得到了相同的错误消息,先运行npm package.json来检查package.json文件中的错误,如果没有,则运行npm cache clean

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/9550.html,未经允许,请勿转载。