我正在学习节点js,我刚刚做了一个教程,我试图创建一个聊天,一切正常,直到我陷入教程的一步。我决定下载教程的源代码来运行serven,看看问题我有一个名为curso的文件夹在这个文件夹中我有两个文件夹ona es chatnodejs,其他是sourcechatjs,在聊天nodejs我有packasge.json和服务器js ,我跑了npminstall,一切都很好。但是,当我下载聊天源时,我把它放在sourcechatjs中,我打开了temirnal并运行了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": ""
}
}
iv一直在尝试很多,但我非常不知道可能会出现什么问题,我会感激有人可以让我知道这个问题!