Home >Web Front-end >JS Tutorial >Read stream Write Stream Work together use(Pipe)
const fs = require('fs');
const readStream = fs.createReadStream('input.txt');
const writeStream = fs.createWriteStream('output.txt');
// Pipe the readable stream to the writable stream
readStream.pipe(writeStream);
// You can also handle events for more control
readStream.on('data', chunk => {
console.log(Reading chunk: ${chunk.length} bytes);
});
writeStream.on('finish', () => {
console.log('Write operation finished!');
});
The above is the detailed content of Read stream Write Stream Work together use(Pipe). For more information, please follow other related articles on the PHP Chinese website!