
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@readme/http-headers
Advanced tools
Utility to find descriptions for HTTP headers.
npm install --save @readme/http-headers
This library retrieves header descriptions directly from MDN's header documentation.
import { getHeader } from '@readme/http-headers';
// A typical header
console.log(getHeader('Connection'));
/**
{
description: 'Controls whether the network connection stays open after the current transaction finishes.',
link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Connection',
}
*/
// A header with a Markdown-flavored description
console.log(getHeader('Cookie'));
/**
{
description: 'Contains stored HTTP cookies previously sent by the server with the Set-Cookie header.',
link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cookie',
markdown: 'Contains stored [HTTP cookies](/en-US/docs/Web/HTTP/Cookies) previously sent by the server with the "Set-Cookie" header',
}
*/
// A header with additional decorations
console.log(getHeader('DPR'));
/**
{
deprecated: true,
experimental: true,
description: 'Client device pixel ratio (DPR), which is the number of physical device pixels corresponding to every CSS pixel.',
link: 'https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/DPR',
}
*/
FAQs
Retrieve HTTP Header descriptions from MDN.
The npm package @readme/http-headers receives a total of 284 weekly downloads. As such, @readme/http-headers popularity was classified as not popular.
We found that @readme/http-headers demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.