Open In App

Node.js Readable Stream readable Event

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

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:

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...");


Output:

Done...
read: GeeksforGeeks

Example 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.");


Output:

Done.
readable: GeeksforGeeks
readable: null
Stream ended

Here, end event is emitted so null is returned.

Reference: https://nodejs.org/api/stream.html#stream_event_readable



Last Updated : 12 Oct, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads