chat-nodejs icon indicating copy to clipboard operation
chat-nodejs copied to clipboard

Please include package.json

Open Ajeey opened this issue 11 years ago • 2 comments

Its better to include package.json file so that anybody who clones this repo can easily run npm install

Ajeey avatar Jan 13 '14 08:01 Ajeey

{ "name": "chat-nodejs", "description": "node.js + socket.io chat application", "version": "0.0.1", "dependencies": { "express": "", "socket.io": "" } }

attmore avatar May 07 '14 09:05 attmore

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" } }

lyenliang avatar Apr 14 '15 02:04 lyenliang