To use the fs-extra
module's FileReadStream
function in Node.js, you can follow these steps:
fs-extra
module using npm:index.tsx21 chars2 lines
fs-extra
module in your JavaScript file:index.tsx32 chars2 lines
FileReadStream
method:index.tsx88 chars3 lines
Here, createReadStream()
method takes one argument i.e., the file path which we want to read. This method will return readable stream which can be used to read the data from the file.
index.tsx322 chars16 lines
Here, we are handling the events emitted by the readStream
object. open
event is emitted when a file is opened. data
event is emitted when data is being read from the file. end
event is emitted when the data reading is completed. error
event is emitted when any error occurs while reading the file.
These are the basic steps to use FileReadStream
function from fs-extra
module in Node.js.
gistlibby LogSnag