In node.js's fs module, we can pass an optional argument to createReadStream to skip or limit the file range (start, end)
https://nodejs.org/api/fs.html#fscreatereadstreampath-options
It's useful when implementing a http gateway to download file from device and to support Range: request
In node.js's fs module, we can pass an optional argument to createReadStream to skip or limit the file range (
start,end)https://nodejs.org/api/fs.html#fscreatereadstreampath-options
It's useful when implementing a http gateway to download file from device and to support Range: request