https://github.com/heapwolf/node-chat
This is very simple code that can be used to demonstrate the caveats and design issues associated with building real-time chat server that uses socket.io.
https://github.com/heapwolf/node-chat
Last synced: 12 months ago
JSON representation
This is very simple code that can be used to demonstrate the caveats and design issues associated with building real-time chat server that uses socket.io.
- Host: GitHub
- URL: https://github.com/heapwolf/node-chat
- Owner: heapwolf
- Created: 2012-01-02T19:56:53.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-10-01T19:21:27.000Z (over 13 years ago)
- Last Synced: 2025-05-18T14:49:15.976Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 106 KB
- Stars: 34
- Watchers: 7
- Forks: 39
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Synopsis
This is very simple code that can be used to demonstrate the caveats and design issues associated with building real-time chat server that uses socket.io.
## Prerequisites
You will need to have node.js and npm installed.
## Installing the demo
Once you have node.js and npm installed you can install the application's dependencies.
```bash
npm install
```
## Running the demo
Once the demo app is installed, you can run the demo from the root directory. you may need to run this command as the super user.
```bash
node server/server.js
```
```bash
sudo node server/server.js
```