SimpleChatServer
1.0.0
Establishes a basic chat server in Node.js using the 'net' module. This server is designed to handle client connections and facilitate communication over a TCP connection. It listens on port 8080 and displays a "server is listening" message upon initialization.
It uses the 'net' module to create a TCP server. The server listens on port 8080, and when it's ready, it logs "server is listening." The server handles client connections as follows:
TODO: handle client disconnections gracefully: