私はノード js を学んでいて、チャットを作成しようとしていたチュートリアルを行ったところです。チュートリアルのステップで行き詰まるまで、すべてがうまく機能します。チュートリアルのソースをダウンロードしてサーバーを実行し、何が問題なのかを確認することにしました。このフォルダーにはcursoというフォルダーがあり、chatnodejsとsourcechatjsの2つのフォルダーがあります。チャット 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": ""
}
}
私は多くのことを試してきましたが、真剣に何が問題なのかわかりません。誰かが私に問題を知らせてくれれば幸いです!