A simple Node.js chat application
- Node >= 4.1
- A TCP client such as UNIX netcat (optional)
- Clone the directory
git clone https://github.com/rajivramv/chatter-box.git
. - Move into the directory
cd ./chatter-box
. - Start the server using the command
node chat-server.js
. - You can now connect to the server using the command
nc <host-ip> 3000
.
- Instead of netcat, you can connect to the server using the chatter-box client using the command
node chat-client.js
.