npm i chai --save-dev issue

时间:2016-07-30 12:15:01

标签: npm mocha chai

我使用mocha对javascript进行单元测试 我用chai来管理断言
输入npm i chai --save-dev后,我收到此错误:

C:\Users\ABDELHAK>npm i chai --save-dev
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "i" "chai" "--save-dev"
npm ERR! node v0.10.18
npm ERR! npm  v2.12.1
npm ERR! file C:\Users\ABDELHAK\AppData\Roaming\npm-cache\chai\3.5.0\package\package.json
npm ERR! code EJSONPARSE

npm ERR! Failed to parse json
npm ERR! Unexpected token '\u0000' at 1:1
npm ERR!
npm ERR! ^
npm ERR! File: C:\Users\ABDELHAK\AppData\Roaming\npm-cache\chai\3.5.0\package\package.json
npm ERR! Failed to parse package.json data.
npm ERR! package.json must be actual JSON, not just JavaScript.
npm ERR!
npm ERR! This is not a bug in npm.
npm ERR! Tell the package author to fix their package.json file. JSON.parse

npm ERR! Please include the following file with any support request:
npm ERR!     C:\Users\ABDELHAK\npm-debug.log

请注意,mocha命令工作正常。

2 个答案:

答案 0 :(得分:0)

在你的npm缓存中,嗯看起来像一个空的package.json文件。也许清洁它会帮助你

$ npm cache clean once

答案 1 :(得分:0)

  1. 首先使用以下命令删除注册表:npm config删除注册表
  2. 清除缓存:npm缓存清除--force
  3. 然后运行您的命令:npm i chai --save-dev

希望有帮助。