Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/prashanthr/chatter
A chat server built using Node.js that communicates over TCP
https://github.com/prashanthr/chatter
Last synced: 24 days ago
JSON representation
A chat server built using Node.js that communicates over TCP
- Host: GitHub
- URL: https://github.com/prashanthr/chatter
- Owner: prashanthr
- Created: 2016-04-10T02:06:32.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-08T19:17:21.000Z (over 8 years ago)
- Last Synced: 2024-10-29T14:20:27.701Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 46.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/prashanthr/Chatter.svg?branch=master)](https://travis-ci.org/prashanthr/Chatter)
# Chatter
A chat server built using Node.js that communicates over TCP# Installation
1. Install Node.js from [https://nodejs.org/en/](https://nodejs.org/en/)
2. Run the following Command
```JavaScript
cd src/app/tcp-server
node chatter
```
# Supported Features
**/rooms** - Lists all the rooms on the server**/users** - Lists all the users in the current room
**/join** - Joins a specified chat room
**/leave** - Removes user from the current chat room and returns them to the lobby
**/create** - Creates a new chat room
**/delete** - Deletes a chat room. A user can only delete a chat room created by him/her
**/quit** - Disconnects the user from the chat server
**/msg** - Sends a private message to another user
**/help** - Lists all available commands for interaction with the server
**/info** - Lists useful information for the user (connection, room and server information)