
Security News
pnpm 11.5 Adds Support for Recognizing npm Staged Publishes
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.
@htptp/hurl-parser
Advanced tools
The Hurl file parser, compiled to WASM and callable from JavaScript!
hurlfmt --format jsonimport { parse } from "@htptp/hurl-parser";
const result = parse(`
GET http://example.com
HTTP/* 200
`);
The returned data will be as follows
{
"entries": [
{
"request": {
"method": "GET",
"url": "http://example.com"
},
"response": {
"status": 200
}
}
]
}
The module also exports TypeScript types for these structures.
import type { Hurl } from "@htptp/hurl-parser";
const result: Hurl.Document = parse(/* ... */);
Just install to your dependencies
$ yarn add @htptp/hurl-parser # if you use yarn
$ npm install @htptp/hurl-parser # if you use npm
And import normally
FAQs
The Hurl parser, callable from pure JS!
The npm package @htptp/hurl-parser receives a total of 4 weekly downloads. As such, @htptp/hurl-parser popularity was classified as not popular.
We found that @htptp/hurl-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.

Research
/Security News
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.