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

https://github.com/allthingssmitty/nodejs-chat

Chat app using Node.js and WebSockets
https://github.com/allthingssmitty/nodejs-chat

Last synced: 6 days ago
JSON representation

Chat app using Node.js and WebSockets

Awesome Lists containing this project

README

          

# Node.js Chat

A starter chat app using Node.js and WebSockets.

image of Node.js chat app

## Install Node.js

1. [Node.js](http://nodejs.org)

## Run Locally

Install all dependencies:

```shell
npm install
```

Run the app:

```shell
node start.js
```

**Note:** You may want to consider using [`nodemon`](http://nodemon.io/) which will auto-start your server every time you save.

```shell
npm install nodemon -g
nodemon start.js
```

Navigate to `http://localhost:3000`. Open two browsers and start chatting.