Streaming and Buffering in Node
Network Connection Streaming in Node.js
Introduction to Network Connection Streaming
Network connection streaming is a powerful tool for handling real-time bidirectional communication. Node.js, with its non-blocking I/O and event-driven model, is particularly well-suited for working with network streams, such as TCP and HTTP.
TCP Streams
Node.js provides the net
module to create TCP servers and clients, which are natural duplex streams, allowing both reading and writing data on the same connection.
Basic Example: TCP Server
In this example, we will create a simple TCP server that listens on a port and sends a response to each connected client.
javascriptconst net = require('net');const server = net.createServer((socket) => {console.log('New client connected');socket.on('data', (data) => {console.log(`Received: ${data}`);socket.write(`Echo: ${data}`);});socket.on('end', () => {console.log('Client disconnected');});socket.on('error', (err) => {console.error('Socket error:', err);});});server.listen(8080, () => {console.log('Server listening on port 8080');});
TCP Client
A TCP client that connects to the previous server and sends a message.
javascriptconst net = require('net');const client = net.createConnection({ port: 8080 }, () => {console.log('Connected to server');client.write('Hello, server!');});client.on('data', (data) => {console.log(`Server says: ${data}`);client.end();});client.on('end', () => {console.log('Disconnected from server');});client.on('error', (err) => {console.error('Client error:', err);});
HTTP Streams
Node.js also allows handling HTTP requests and responses as streams. This is useful for streaming large amounts of data, such as files or video streams.
Basic Example: HTTP Server
In this example, we will create an HTTP server that serves a large file in chunks using streams.
javascriptconst http = require('http');const fs = require('fs');const server = http.createServer((req, res) => {const readableStream = fs.createReadStream('path/to/largeFile.txt');readableStream.pipe(res);readableStream.on('error', (err) => {console.error('File read error:', err);res.writeHead(500, { 'Content-Type': 'text/plain' });res.end('Internal Server Error');});res.on('error', (err) => {console.error('Response error:', err);});});server.listen(8080, () => {console.log('HTTP server listening on port 8080');});
Streaming with WebSockets
WebSockets allow real-time bidirectional communication and are useful for applications like real-time chat and live streams. Node.js has multiple libraries to handle WebSockets, such as ws
.
Basic Example: WebSocket Server
javascriptconst WebSocket = require('ws');const wss = new WebSocket.Server({ port: 8080 });wss.on('connection', (ws) => {console.log('New client connected');ws.on('message', (message) => {console.log(`Received: ${message}`);ws.send(`Echo: ${message}`);});ws.on('close', () => {console.log('Client disconnected');});ws.on('error', (err) => {console.error('WebSocket error:', err);});});
Summary
Network connection streaming in Node.js allows for efficient handling of real-time bidirectional communication and data transmission. Whether using TCP, HTTP, or WebSockets, Node.js's streaming capabilities provide a strong foundation for developing robust and scalable network applications.
Network Connection Streaming Diagram
Support Chuck’s Academy!
Enjoying this course? I put a lot of effort into making programming education free and accessible. If you found this helpful, consider buying me a coffee to support future lessons. Every contribution helps keep this academy running! ☕🚀

Chat with Chuck

- Introduction to the Course on Streaming and Buffering in Node.js
- Understanding Streams in Node.js
- Understanding Buffering in Node.js
- Using Pipes with Streams in Node.js
- Transform Streams in Node.js
- Leyendo Archivos Usando Streams en Node.js
- Writing Files Using Streams in Node.js
- Duplex Streams in Node.js
- Error Handling in Streams in Node.js
- Backpressure in Node.js Streams
- Network Connection Streaming in Node.js
- Streaming Large Files in Node.js
- Streams with Compression in Node.js