Arcjet utilities for getting the body from a Node.js Stream.
Installation
npm install -S @arcjet/body
Example
import { readBody } from"../index";
// Some stream.Readable-like object, such as node's `http.IncomingMessage`const request = newIncomingMessage();
// Returns the body as a utf-8 encoded stringconst body = awaitreadBody(request, { limit: 1024 });
console.log(body);
Implementation
The implementation of this library is based on the raw-body
package. Licensed MIT with licenses included in our source code.
We've chosen to re-implement the logic to read the body from the stream to keep
the dependency tree for our packages as light as possible. Our implementation only
provides the functionality that we need, specifically it excludes the functionality
to return the stream as a buffer and always parses it as a utf-8 string. The interface
was also changed to only support promises rather than the sync implementation provided by raw-body.
Arcjet utilities for extracting the body from a Node.js IncomingMessage
We found that @arcjet/body demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.It has 0 open source maintainers collaborating on the project.
Package last updated on 23 Oct 2024
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.
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
By Kush Pandya, Philipp Burckhardt, Kirill Boychenko, Orlando Barrera - Oct 31, 2024