Home > Article > Web Front-end > Understanding Streams in Node.js — Efficient Data Handling

Streams are a powerful feature in Node.js that allows the handling of large amounts of data efficiently by processing it piece by piece, rather than loading everything into memory at once. They are especially useful for dealing with large files, real-time data, or even network connections. In this article, we'll dive deep into Node.js streams, covering the types of streams, how to use them with code examples, and a real-world use case to solidify your understanding.
A stream is a sequence of data that is processed over time. In Node.js, streams are instances of EventEmitter, which means they can emit and respond to events. Streams allow data to be read and written in chunks (small pieces) rather than loaded all of the data at once, which makes them memory-efficient and faster.
Node.js provides four types of streams:
Let's explore each type of stream with examples.
A readable stream lets you consume data, chunk by chunk, from a source such as a file or network request.
Example: Reading a file using a readable stream
const fs = require('fs');
// Create a readable stream
const readableStream = fs.createReadStream('example.txt', 'utf8');
// Listen for 'data' events to read chunks of data
readableStream.on('data', (chunk) => {
console.log('New chunk received:');
console.log(chunk);
});
// Handle 'end' event when the file has been completely read
readableStream.on('end', () => {
console.log('File reading completed.');
});
// Handle any errors
readableStream.on('error', (err) => {
console.error('Error reading file:', err.message);
});
Explanation:
Writable streams are used to write data chunk by chunk, such as saving data to a file.
Example: Writing data to a file using a writable stream
const fs = require('fs');
// Create a writable stream
const writableStream = fs.createWriteStream('output.txt');
// Write chunks of data to the file
writableStream.write('First chunk of data.\n');
writableStream.write('Second chunk of data.\n');
// End the stream
writableStream.end('Final chunk of data.');
// Handle 'finish' event when writing is complete
writableStream.on('finish', () => {
console.log('Data writing completed.');
});
// Handle any errors
writableStream.on('error', (err) => {
console.error('Error writing to file:', err.message);
});
Explanation:
Duplex streams can both read and write data, and are used for operations like network protocols where you need to send and receive data.
Example: Custom Duplex Stream
const { Duplex } = require('stream');
// Create a custom duplex stream
const myDuplexStream = new Duplex({
read(size) {
this.push('Reading data...');
this.push(null); // No more data to read
},
write(chunk, encoding, callback) {
console.log(`Writing: ${chunk.toString()}`);
callback();
}
});
// Read from the stream
myDuplexStream.on('data', (chunk) => {
console.log(chunk.toString());
});
// Write to the stream
myDuplexStream.write('This is a test.');
myDuplexStream.end();
Explanation:
Transform streams allow you to modify or transform the data as it passes through. They're a special type of duplex stream.
Example: A simple transform stream to uppercase text
const { Transform } = require('stream');
// Create a custom transform stream
const toUpperCaseTransform = new Transform({
transform(chunk, encoding, callback) {
this.push(chunk.toString().toUpperCase());
callback();
}
});
// Pipe data through the transform stream
process.stdin.pipe(toUpperCaseTransform).pipe(process.stdout);
Explanation:
One of the most common ways to work with streams is to "pipe" them together. This means passing data from one stream to another. This is useful when you need to process data step by step, such as reading from a file and writing to another file.
Example: Piping a readable stream to a writable stream
const fs = require('fs');
// Create a readable stream
const readableStream = fs.createReadStream('input.txt');
// Create a writable stream
const writableStream = fs.createWriteStream('output.txt');
// Pipe the readable stream into the writable stream
readableStream.pipe(writableStream);
// Handle 'finish' event when piping is done
writableStream.on('finish', () => {
console.log('File copied successfully.');
});
Explanation:
In real-world applications, you might need to upload large files to the server. Instead of loading the entire file into memory, you can use streams to handle file uploads efficiently.
Example: Uploading a file using streams with Node.js and multer
const express = require('express');
const multer = require('multer');
const fs = require('fs');
const app = express();
const upload = multer({ dest: 'uploads/' });
app.post('/upload', upload.single('file'), (req, res) => {
const readableStream = fs.createReadStream(req.file.path);
const writableStream = fs.createWriteStream(`./uploads/${req.file.originalname}`);
// Pipe the uploaded file to the writable stream
readableStream.pipe(writableStream);
writableStream.on('finish', () => {
res.send('File uploaded and saved.');
});
writableStream.on('error', (err) => {
res.status(500).send('Error saving file.');
});
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
Explanation:
Example:
readableStream.on('error', (err) => {
console.error('Stream error:', err.message);
});
Example:
writableStream.write(chunk, (err) => {
if (err) console.error('Error writing chunk:', err.message);
});
Streams in Node.js offer a powerful and efficient way to handle data, especially in cases where data comes in large quantities or needs to be processed incrementally. From reading and writing files to handling network requests and processing data in real time, streams allow you to build scalable and performant applications. In this article, we explored the different types of streams, how to use them, and real-world use cases to deepen your understanding of stream-based processing in Node.js.
The above is the detailed content of Understanding Streams in Node.js — Efficient Data Handling. For more information, please follow other related articles on the PHP Chinese website!