https://github.com/devjin0617/nodejs-socket.io-chat-example
this is chat example using nodejs with socket.io
https://github.com/devjin0617/nodejs-socket.io-chat-example
Last synced: over 1 year ago
JSON representation
this is chat example using nodejs with socket.io
- Host: GitHub
- URL: https://github.com/devjin0617/nodejs-socket.io-chat-example
- Owner: devjin0617
- License: mit
- Created: 2017-01-10T13:40:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-08-27T16:36:19.000Z (almost 7 years ago)
- Last Synced: 2025-01-08T11:20:18.222Z (over 1 year ago)
- Language: HTML
- Size: 5.86 KB
- Stars: 17
- Watchers: 9
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nodejs-socket.io-chat-example
this is chat example using nodejs with socket.io
# how to run
npm module install:
```
$ cd /path/to/project
$ npm install
```
1. start socket.io server
> using port 50000
```
$ npm run socket
```
2. start simple web server
```
$ npm run web
```
> using port 8000
3. open your browser and connect to `localhost:8000`
# blog post
[node.js] 실시간 멀티채팅 구현하기!: