From 9c9844777e62c440486943e69078f17f9a256dce Mon Sep 17 00:00:00 2001 From: Ray Farias Date: Wed, 5 Oct 2016 09:57:30 -1000 Subject: [PATCH] adds three stretch goals private messaging, rooms, and mute. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8fe91d2..9911383 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,9 @@ Whenever the connected socket (client) emits a 'data' event, then data is being 1. prevent users to set their name as `[ADMIN]` or any other user's name 1. [bonus] admin can enter a command to kick a client `\kick username` and `kick ip:port` will both disconnect the client 1. [bonus] add a rate limiter that if a client reaches the allowed 'writes per second' limet, automatically kick that user. +1. [bonus] add private message support between two clients. +1. [bonus] add rooms feature. A client can invite other clients to a private room. +1. [bouns] add ability for a client to mute all messages from another. 1. [bonus] write a client that floods another server, perhaps with a command `\flood "message"` ---