chat-nodejs
chat-nodejs copied to clipboard
Please include package.json
Its better to include package.json file so that anybody who clones this repo can easily run npm install
{ "name": "chat-nodejs", "description": "node.js + socket.io chat application", "version": "0.0.1", "dependencies": { "express": "", "socket.io": "" } }
Here is the package.json I use for chat-nodejs
{ "name": "chat-nodejs", "version": "0.0.1", "scripts": { "start": "node server" }, "dependencies": { "express": "~4.11.0", "socket.io": "~0.9.1" } }