1.0.0 • Published 7 years ago

partial-response v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

partial-response

An Express.js middleware to byte serve content

Install

npm install --save partial-response

Usage

partial-response inserts a method (sendPartial) on the response object.

It takes a file path as parameter, and will serve the file with proper Range headers.

Like so:

const pr = require('partial-response')

app.get('/cat-pic', pr, (req, res) => {
  res.sendPartial('./cat-pic1.jpg')
})

License

MIT