I'm incredibly new to Node.JS (My background is Unity C# if that helps you with any comparisons).
I'm on the chat tutorial for Socket.IO
http://socket.io/get-started/chat/
I don't understand what this means
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 express@4.10.2
- What is 'Save'?
- Is this meant to be used on a command prompt on the server with Node.JS installed?