-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#Project README: Kurama-Chat | ||
|
||
##Overview : | ||
This project involves the development of an Internet Relay Chat (IRC) client and server using NodeJS + ExpressJS for the server and ReactJS for the client. The system is designed to handle multiple simultaneous connections, allowing users to join, create, rename, and delete channels. Additionally, it supports real-time messaging within channels, including notifications when users join or leave a channel. | ||
|
||
##Features : | ||
- 1. Multiple Channel Support: Users can join several channels simultaneously. | ||
- 2. Channel Management: Ability to create, rename, and delete channels. | ||
- 3. Real-time Notifications: Notifications for user join/leave events. | ||
- 4. Messaging: Users can speak in channels they've joined, send private messages, and list users in channels. | ||
Persistence | ||
- 5. Channels and messages are persistently stored using a chosen method (file, database, etc.). | ||
- 6. User Interaction | ||
- 7. Users must set a nickname to use the application. No authentication system is required, but adding one is a bonus. | ||
- 8. The client and server communicate using a chosen protocol. | ||
|
||
##Commands : | ||
- /nick: Set user nickname. | ||
- /list: List available channels, with optional search. | ||
- /create: Create a new channel. | ||
- /delete: Delete a channel. | ||
- /join: Join a channel. | ||
- /quit: Leave a channel. | ||
- /users: List users in a channel. | ||
- /msg: Send a private message. | ||
- /clear: clear the chat (don't work on the global chat room) | ||
|
||
This README outlines the core functionalities and commands supported by the IRC client and server project. | ||
|
||
#Installation : | ||
|
||
```docker compose up -d``` |