1.3.8 • Published 3 years ago
@boranseckin/bridge v1.3.8
Bridge - Simple Chat Service
Bridge is a basic CLI chat application using Socket.io.
Features
- Server, port and channel selection when started.
- Username selection when first connected to the server.
- Change usernames on the fly.
- Unlimited room initialization and connection.
- Whisper to other users in private.
- Emote to draw attention.
- Auto-reconnection when connection is interrupted.
- Colors... Lots of colors!
Usage
Install the bridge package by running npm install -g boranseckin/bridge.
Client
- Run
npx bridgeto start the client. - When prompted
Server:, enter the server URL in the form of<domain>:<port>/<channel>.- If you do not specify channel, it will be assumed
/. - If you do not specify port, it will be assumed
3636. - If you do not specify domain, it will be assumed
localhost.
- If you do not specify channel, it will be assumed
- When prompted
Username:, enter the desired username.
Server
Run
npx bridge-serverto start the server.- If you want to change the default port (
3636), use-p <port>argument. - If you want to open multiple channels, use
-c <channel>argument. You can use this argument as many times as you want. The server will open one channel for each-ctag. The default channel (/) will be always open regardless the additional channels.
Example:
npx bridge-server -p 1111 -c super -c server- If you want to change the default port (
You will see the log of connections on your terminal.
Commands
Everything starting with a forward slash (/) is assumed to be a command.
/me <message>is used to send emotes. If sent without a message, acts as a indicator./w <to> <message>is used to whisper to a specific user.<to>has to be an online user in the server./username <username>is used to change the username./room <room>is used to change the room. If the room name is empty, user will be assigned to the#defaultroom./ch <channel>is used to change the channel. If the channel name is empty, user will be assigned to the/channel./clearis used to clear the chat for the user./usersis used to list all online users with their room names and IDs./idis used to print user's ID./serveris used to print server's address./statusis used to print the connection status./helpis used to print all the usable commands./exitis used to exit the program.
Dependencies
Author
- Boran Seckin
License
This project is licensed under the MIT License - see the LICENSE.md file for details.