Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sungwoncho/nodechat
A minimalistic chat server using Node.js and Express.
https://github.com/sungwoncho/nodechat
Last synced: 15 days ago
JSON representation
A minimalistic chat server using Node.js and Express.
- Host: GitHub
- URL: https://github.com/sungwoncho/nodechat
- Owner: sungwoncho
- Created: 2014-10-30T02:52:35.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-01T04:46:05.000Z (about 10 years ago)
- Last Synced: 2024-11-01T11:07:04.027Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 930 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nodechat
A simple chat server Built on Node.js and Express.
## To use
Run the following command to start the server.
#### Installation
To quickly get started, you can clone the repo.
# Clone the repo
$ git clone [email protected]:sungwoncho/nodechat.git
$ cd nodechat
# Install the dependencies
$ npm install#### Start the server
$ node app.js#### Join the server
In your browser, visit `http://localhost:8080` to connect to the server.## To do
- Add username support
- Notify every socket when a new user joins the chat using broadcast.
- Display online user list
- Display who is typing
- Enable private messaging
- Add CSS