私はNode.JSを信じられないほど新しくしています(私の背景はUnity C#です。私はこれがnpm install --save [email protected]の意味は何ですか?どうすれば使用できますか?
First let’s create a package.json manifest file that describes our project.
I recommend you place it in a dedicated empty directory (I’ll call mine
chat-example).
{
"name": "socket-chat-example",
"version": "0.0.1",
"description": "my first socket.io app",
"dependencies": {}
}
Now, in order to easily populate the dependencies with the things we need, we’ll
npm install --save [email protected]
- を意味を理解していない私はSocket.IO
http://socket.io/get-started/chat/
チャットのチュートリアルによ
'保存' とは何ですか?
- これは、Node.JSがインストールされているサーバーの サーバーのコマンドプロンプトで使用することを意味していますか?
可能な複製(http://stackoverflow.com/questions/19578796/what-is-the-save-option-for-npm-install ) – xkcd149