Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@hapi/accept
Advanced tools
@hapi/accept is a utility library for HTTP content negotiation. It helps in parsing and matching HTTP headers like Accept, Accept-Charset, Accept-Encoding, and Accept-Language, allowing you to determine the best content to serve based on the client's preferences.
Parsing Accept Header
This feature allows you to parse the 'Accept' header from an HTTP request and get an array of media types sorted by their quality values.
const Accept = require('@hapi/accept');
const headers = { 'accept': 'text/html, application/json;q=0.9, */*;q=0.8' };
const mediaTypes = Accept.mediaTypes(headers.accept);
console.log(mediaTypes); // ['text/html', 'application/json', '*/*']
Parsing Accept-Language Header
This feature allows you to parse the 'Accept-Language' header and get an array of languages sorted by their quality values.
const Accept = require('@hapi/accept');
const headers = { 'accept-language': 'en-US,en;q=0.9,fr;q=0.8' };
const languages = Accept.languages(headers['accept-language']);
console.log(languages); // ['en-US', 'en', 'fr']
Parsing Accept-Charset Header
This feature allows you to parse the 'Accept-Charset' header and get an array of charsets sorted by their quality values.
const Accept = require('@hapi/accept');
const headers = { 'accept-charset': 'utf-8, iso-8859-1;q=0.5' };
const charsets = Accept.charsets(headers['accept-charset']);
console.log(charsets); // ['utf-8', 'iso-8859-1']
Parsing Accept-Encoding Header
This feature allows you to parse the 'Accept-Encoding' header and get an array of encodings sorted by their quality values.
const Accept = require('@hapi/accept');
const headers = { 'accept-encoding': 'gzip, deflate;q=0.8, br;q=0.6' };
const encodings = Accept.encodings(headers['accept-encoding']);
console.log(encodings); // ['gzip', 'deflate', 'br']
Matching Media Types
This feature allows you to match the best media type from a list of available types based on the 'Accept' header.
const Accept = require('@hapi/accept');
const headers = { 'accept': 'text/html, application/json;q=0.9, */*;q=0.8' };
const mediaType = Accept.mediaType(headers.accept, ['application/json', 'text/html']);
console.log(mediaType); // 'text/html'
Negotiator is a library for HTTP content negotiation. It provides similar functionalities to @hapi/accept, such as parsing and matching Accept, Accept-Charset, Accept-Encoding, and Accept-Language headers. However, @hapi/accept is part of the hapi ecosystem and may have better integration with other hapi modules.
Content-Type is a library for parsing and formatting media types. While it does not provide the full range of content negotiation features like @hapi/accept, it is useful for handling media type parsing and formatting in a more lightweight manner.
accept is part of the hapi ecosystem and was designed to work seamlessly with the hapi web framework and its other components (but works great on its own or with other frameworks). If you are using a different web framework and find this module useful, check out hapi – they work even better together.
FAQs
HTTP Accept-* headers parsing
We found that @hapi/accept demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.