Tag: web server

Node.js Tutorial – 3 Creating a Chat Server using TCP Sockets

Previous tutorials on node.js could be found here: We have learned to create a http server by using require(‘http’) and http.createServer(…).listen(port). The node.js is based on Javascript and event-driven model, which means that the events happen later …