为什么我不能在Mac上成功运行“ npm start”命令?

时间:2020-07-24 16:30:47

标签: node.js json npm

我正在尝试安装npm,并且不断出现错误。最初的问题是我需要package-lock.json文件和package.json文件,这可以通过在终端中键入“ npm init”来解决。

然后,当尝试运行“ npm start”时,它说我缺少启动脚本。因此,我打开package.json文件添加了它,如下所示:

{
  "name": "arvinder",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start": "node index.js"
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}

现在我遇到以下错误:

Arvinders-MacBook-Air:~ Arvinder$ npm start
npm ERR! file /Users/Arvinder/package.json
npm ERR! code EJSONPARSE
npm ERR! JSON.parse Failed to parse json
npm ERR! JSON.parse Unexpected string in JSON at position 137 while parsing '{
npm ERR! JSON.parse   "name": "arvinder",
npm ERR! JSON.parse   "version": "1.'
npm ERR! JSON.parse Failed to parse package.json data.
npm ERR! JSON.parse package.json must be actual JSON, not just JavaScript.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/Arvinder/.npm/_logs/2020-07-24T16_26_18_155Z-debug.log

我不确定json文件中的错误在哪里或为什么它无法解析,所以如果有人可以帮助指出一个解决方案,将不胜感激。

2 个答案:

答案 0 :(得分:2)

似乎您在"start": "node index.js"之后的第7行中缺少逗号。这是正确的:

{
  "name": "arvinder",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start": "node index.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}

我建议您为IDE安装一个扩展程序,该扩展程序可以捕获JSON文件中的语法错误。

答案 1 :(得分:0)

我建议您使用vscode。

如果缺少逗号,它将引发错误。

例如:

the example of missing a comma