An open API service indexing awesome lists of open source software.

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.

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

```