Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@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-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 supportedcache
({ set: Function; get: Function; has: Function }
, optional) - A Cache-Store, e.g. ES6-Map or mnemonist LRUCacheconst 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*
Licensed under MIT.
FAQs
a negotiator for the accept-headers
The npm package @fastify/accept-negotiator receives a total of 391,764 weekly downloads. As such, @fastify/accept-negotiator popularity was classified as popular.
We found that @fastify/accept-negotiator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 17 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.