Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@smithy/middleware-content-length
Advanced tools
[![NPM version](https://img.shields.io/npm/v/@smithy/middleware-content-length/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-content-length) [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-content-length.svg)](https://ww
@smithy/middleware-content-length is a middleware package for the Smithy client framework. It is used to automatically calculate and set the Content-Length header for HTTP requests. This is particularly useful when dealing with payloads where the size needs to be explicitly defined.
Automatic Content-Length Calculation
This feature automatically calculates the Content-Length of the request body and sets it in the HTTP headers. This is useful for ensuring that the server knows the size of the incoming request payload.
const { ContentLengthMiddleware } = require('@smithy/middleware-content-length');
const { HttpRequest } = require('@smithy/protocol-http');
const request = new HttpRequest({
hostname: 'example.com',
method: 'POST',
body: JSON.stringify({ key: 'value' })
});
const middleware = ContentLengthMiddleware();
const handler = middleware((next) => async (args) => {
return next(args);
});
handler({ request }).then((response) => {
console.log(response.request.headers['Content-Length']); // Outputs the calculated Content-Length
});
Axios is a popular HTTP client for Node.js and the browser. It automatically sets the Content-Length header for POST requests with a body. However, it is a full-fledged HTTP client and not just middleware.
The request package is another HTTP client for Node.js that automatically handles the Content-Length header for requests with a body. Like axios, it is a complete HTTP client and not just middleware.
Node-fetch is a lightweight module that brings window.fetch to Node.js. It also automatically sets the Content-Length header for requests with a body. It is more lightweight compared to axios and request.
FAQs
[![NPM version](https://img.shields.io/npm/v/@smithy/middleware-content-length/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-content-length) [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-content-length.svg)](https://ww
We found that @smithy/middleware-content-length demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.