
Security News
CISA Rebuffs Funding Concerns as CVE Foundation Draws Criticism
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
@fastify/accept-negotiator
Advanced tools
A negotiator for the accept-headers
npm i @fastify/accept-negotiator
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-encodingsupportedValues
(string[]
, required) - The values, which are supportedconst negotiate = require('@fastify/accept-encoding').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 supportedcache
({ set: Function; get: Function; has: Function }
, optional) - A Cache-Store, e.g. ES6-Map or mnemonist LRUCacheconst Negotiator = require('@fastify/accept-encoding').Negotiator
const encodingNegotiator = new Negotiator({ supportedValues: ['br'], cache: new Map() })
const encoding = encodingNegotiator.negotiate('gzip, deflate, br')
console.log(encoding) // 'br*
Licensed under MIT.
FAQs
a negotiator for the accept-headers
The npm package @fastify/accept-negotiator receives a total of 1,012,120 weekly downloads. As such, @fastify/accept-negotiator popularity was classified as popular.
We found that @fastify/accept-negotiator demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 18 open source maintainers collaborating on the project.
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.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.