ใช้ createReadStream เพื่อส่งส่วนที่ร้องขอไปยังไคลเอนต์ การเรียกใช้ฟังก์ชัน createReadStream() จะทำให้คุณมีสตรีมที่สามารถอ่านได้
ตัวอย่าง
ต่อไปนี้คือรหัส −
stream = fs.createReadStream(path); stream.on('open', function () { res.writeHead(206,{ "Content-Range":"bytes " + begin + "-" + end + "/" +total, "Accept-Ranges":"bytes", "Content-Length":chunksize, "Content-Type":"new/mp4" }); stream.pipe(res); });