Search⌘ K
AI Features

Net

Discover how to use the Node.js net module to build TCP servers and clients. Learn about connection events, socket communication, and how to send data interactively between server and client using stream interfaces.

TCP

One of the most common transport layer protocols is TCPTransmission Control Protocol. It provides a reliable way of sending packets in an ordered and error-checked stream. TCP is connection-oriented, which means that a connection must be established ...