5

我正在学习 node js,我刚刚做了一个教程,在其中我试图创建一个聊天,一切都很好,直到我陷入教程的一个步骤。我决定下载教程的源代码来运行服务器,看看有什么问题。我在这个文件夹中有一个名为 curso 的文件夹我有两个文件夹,一个是 chatnodejs,另一个是 sourcechatjs;在聊天 nodejs 我有 packasge.json 和服务器 js。我跑了npminstall,一切都很好,但是当我下载聊天源时,我将它放在 sourcechatjs 中,我打开终端并运行npm install并得到了这个错误:

jhonnatans-MacBook-Pro:chat jhonnatan$ npm install
npm ERR! install Couldn't read dependencies
npm ERR! Failed to parse json
npm ERR! Unexpected token /
npm ERR! File: /Users/jhonnatan/Documents/Cursoseccion2/clasenodejs/chat/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! System Darwin 12.3.0  
npm ERR! command "node" "/usr/local/bin/npm" "install"
npm ERR! cwd /Users/jhonnatan/Documents/Cursoseccion2/clasenodejs/chat
npm ERR! node -v v0.10.0
npm ERR! npm -v 1.2.14
npm ERR! file /Users/jhonnatan/Documents/Cursoseccion2/clasenodejs/chat/package.json
npm ERR! code EJSONPARSE
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /Users/jhonnatan/Documents/Cursoseccion2/clasenodejs/chat/npm-debug.log
npm ERR! not ok code 0

这就是我的 JSON 的样子:

{
    // Aca definiremos nuestro package.json, lo primero es el nombre
    "name": "curso",
    // Luego la version del mismo
    "version": "0.0.1",
    // Ahora las dependencias, normalmente podrias hacer esto con npm pero es mucho mejor tener claro y ejecutar estricatemente las necesaria
    "dependencies": {
        // Express el cual se encargara de ser nuestro framework en node
        "express": "",
        //los tipos de vista, jade parecido al que usa ruby on rails y swig parecido al que usa django
        "jade": "",
        "swig": "",
        // El que se encargara de renderizar los templates en un contexto
        "consolidate": "",
        // y por ultimo el encargado de manejar los sockets :)
        "socket.io": ""
    }
}

我一直在尝试很多,但说真的,我不知道可能是什么问题。如果有人可以让我知道问题,我将不胜感激!

4

1 回答 1

5

JSON文件中不能有注释。

删除注释行// ...,它应该可以工作。

于 2013-03-17T21:45:09.807 回答