http-responders

Zero-dependency http responders

MIT License

Downloads
705
Stars
39
Committers
2

http-responders

Zero-dependency HTTP response functions.

Supports:

  • status
  • json
  • redirect
  • stream
  • file
  • download

Example

import { status, json, redirect, stream, file, download } from 'http-responders'

http.createServer(async (req, res) => {

  // Respond with HTTP Status
  status(res, 404)

  // Respond with JSON
  json(res, { beep: 'boop' })

  // Redirect
  redirect(req, res, 'https://example.com/')

  // Respond with a generic stream
  await stream(res, fs.createReadStream('file.txt'))

  // Respond with a file (+ content length)
  await file(res, 'file.txt')

  // Make the browser download the file
  await download(res, 'file.txt)

})

Installation

$ npm install http-responders

API

.status(res, code)

.json(res, json)

.redirect(req, res, location[, code = 302])

await .stream(res, stream)

await .file(res, path, [fsOpts])

await .download(res, path, [fsOpts])

License

MIT