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
- Host: GitHub
- URL: https://github.com/allthingssmitty/nodejs-chat
- Owner: AllThingsSmitty
- License: mit
- Created: 2016-07-11T17:19:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-29T17:26:52.000Z (almost 2 years ago)
- Last Synced: 2025-03-17T20:11:16.315Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 220 KB
- Stars: 18
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Node.js Chat
A starter chat app using Node.js and WebSockets.

## 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.