The 'readable' Event in a Readable Stream is emitted when the data is available so that it can be read from the stream or it can be emitted by adding a listener for the 'readable' event which will cause data to be read into an internal buffer.
Syntax:
javascript
Output:
javascript
Output:
Event: 'readable'Below examples illustrate the use of readable event in Node.js: Example 1:
// Node.js program to demonstrate the
// readable event
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
// Handling readable event
readable.on('readable', () => {
let chunk;
// Using while loop and calling
// read method
while (null !== (chunk = readable.read())) {
// Displaying the chunk
console.log(`read: ${chunk}`);
}
});
console.log("Done...");
Done... read: GeeksforGeeksExample 2:
// Node.js program to demonstrate the
// readable event
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
// Handling readable event
readable.on('readable', () => {
console.log(`readable: ${readable.read()}`);
});
// Handling end event
readable.on('end', () => {
console.log('Stream ended');
});
console.log("Done.");
Done. readable: GeeksforGeeks readable: null Stream endedHere, end event is emitted so null is returned. Reference: https://nodejs.org/api/stream.html#stream_event_readable