forked from devjin0617/nodejs-socket.io-chat-example
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba9385f
commit 695d59d
Showing
3 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"name": "nodejs-socket.io-chat-example", | ||
"version": "1.0.0", | ||
"description": "this is chat example using node.js with socket.io", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "node index.js", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/devjin0617/nodejs-socket.io-chat-example.git" | ||
}, | ||
"keywords": [ | ||
"chat", | ||
"socket.io", | ||
"node.js", | ||
"talk", | ||
"tcp", | ||
"websocket" | ||
], | ||
"author": "devjin0617", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/devjin0617/nodejs-socket.io-chat-example/issues" | ||
}, | ||
"homepage": "https://github.com/devjin0617/nodejs-socket.io-chat-example#readme", | ||
"dependencies": { | ||
"socket.io": "^1.7.2" | ||
} | ||
} |