salute

3.0.0 • Public • Published

Salute

Build Status NPM Downloads pledge

Salute is a high order function you can use as a middleware for your HTTP servers:

  • Chunked encoding: The data returned by your function is decomposed into series of chunks using chunked transfer encoding. Salute automatically reduce time to first byte and work around the v8 heap memory limit while having low memory footprint.
  • Polymorphic: Salute provides a single interface to process whatever data returned by your function. It even accepts promises of streams.
  • HTTP status: Return an HTTP error to automatically send status with custom payload through the response.

Usage

const salute = require('salute')
const http = require('http')
const createError = require('http-errors')
 
 
const middleware = salute((req) => {
  switch(req.url) {
    case '/stream':
      return fs.createReadStream('hello.txt')
    case '/errors':
      return createError(401, 'Please login')
    default:
      return 'hello world'
  }
})
 
 
http.createServer((req, res) => {
  middleware(req, res).pipe(res)
})

Salute automatically know which type of data you want to send through the response and set the appropriate content type (text/plain for promises and streams). However, you can set the response header with a content type of your choice:

salute(fn, 'csv')

Installation

npm install salute --save

NPM

Question

For questions and feedback please use our twitter account. For support, bug reports and or feature requests please make sure to read our community guideline and use the issue list of this repo and make sure it's not present yet in our reporting checklist.

Contribution

Salute is an open source project and would not exist without its community. If you want to participate please make sure to read our guideline before making a pull request. If you have any salute-related project, component or other let everyone know in our wiki.

Licence

The MIT License (MIT)

Copyright (c) 2016 Olivier Wietrich

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

Package Sidebar

Install

npm i salute

Weekly Downloads

7

Version

3.0.0

License

MIT

Last publish

Collaborators

  • bredele