Socket
Socket
Sign inDemoInstall

@fastify/accept-negotiator

Package Overview
Dependencies
0
Maintainers
17
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @fastify/accept-negotiator

a negotiator for the accept-headers


Version published
Weekly downloads
909K
decreased by-2.33%
Maintainers
17
Install size
8.00 kB
Created
Weekly downloads
 

Readme

Source

@fastify/accept-negotiator

CI NPM version js-standard-style

A negotiator for the accept-headers

Install

npm i @fastify/accept-negotiator

Usage

The module exports a function that you can use for negotiating an accept-header, e.g. accept-encoding. It takes 2 parameters:

negotiate(header, supportedValues)
  • header (string, required) - The accept-header, e.g. accept-encoding
  • supportedValues (string[], required) - The values, which are supported
const negotiate = require('@fastify/accept-negotiator').negotiate
const encoding = negotiate('gzip, deflate, br', ['br'])
console.log(encoding) // 'br*

The module also exports a class that you can use for negotiating an accept-header, e.g. accept-encoding, and use caching for better performance.

Negotiate(supportedValues)
  • supportedValues (string[], required) - The values, which are supported
  • cache ({ set: Function; get: Function; has: Function }, optional) - A Cache-Store, e.g. ES6-Map or mnemonist LRUCache
const Negotiator = require('@fastify/accept-negotiator').Negotiator
const encodingNegotiator = new Negotiator({ supportedValues: ['br'], cache: new Map() })

const encoding = encodingNegotiator.negotiate('gzip, deflate, br')
console.log(encoding) // 'br*

License

Licensed under MIT.

Keywords

FAQs

Last updated on 04 Dec 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc