我正在尝试按照Microsoft's Blog Post通过Node为visual studio代码创建本地服务器。我通过在我的根文件夹中添加package.json文件并首先运行npm install来完全遵循这些非常简单的指令。当我这样做时,我收到以下错误:
$ npm install
npm ERR! Windows_NT 10.0.14393
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install"
npm ERR! node v6.10.2
npm ERR! npm v3.10.10
npm ERR! file C:\Users\Temple\desktop\secret\package.json
npm ERR! code EJSONPARSE
npm ERR! Failed to parse json
npm ERR! Unexpected token '“' at 2:4
npm ERR! “name”: “Demo”,
npm ERR! ^
npm ERR! File: C:\Users\Temple\desktop\secret\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\Temple\desktop\secret\npm-debug.log
是的,我安装了节点。
答案 0 :(得分:2)
您使用的引号类型错误(窗口类型)请使用此字符:"
答案 1 :(得分:1)
看起来您使用编辑器编辑了package.json
,该编辑器会自动使用"智能引号" (例如Microsoft Word)。例如,尝试重新输入记事本中的“
字符,然后查看它是否有效。
答案 2 :(得分:1)
package.json中的错误消息 您必须使用双引号。 检查并验证here
中的package.json文件答案 3 :(得分:0)
复制粘贴时看起来像
"name": "Demo”,
它改为
“name”: “Demo”,
问题在于引号。将“
或”
的所有实例替换为"
,您应该做得很好。