Socket
Socket
Sign inDemoInstall

@aws-sdk/middleware-expect-continue

Package Overview
Dependencies
Maintainers
5
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-sdk/middleware-expect-continue

[![NPM version](https://img.shields.io/npm/v/@aws-sdk/middleware-expect-continue/latest.svg)](https://www.npmjs.com/package/@aws-sdk/middleware-expect-continue) [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/middleware-expect-continue.svg)](http


Version published
Weekly downloads
4.9M
decreased by-22.1%
Maintainers
5
Weekly downloads
 
Created

What is @aws-sdk/middleware-expect-continue?

@aws-sdk/middleware-expect-continue is a middleware package for the AWS SDK for JavaScript. It is used to handle the 'Expect: 100-continue' HTTP header, which allows a client to check if the server is willing to accept a request before actually sending the request body. This can be useful for optimizing network usage and improving performance when sending large payloads.

What are @aws-sdk/middleware-expect-continue's main functionalities?

Adding Expect-Continue Middleware

This feature allows you to add the Expect-Continue middleware to an AWS SDK client. The middleware is added to the client's middleware stack at the 'build' step with high priority.

const { S3Client } = require('@aws-sdk/client-s3');
const { expectContinueMiddleware } = require('@aws-sdk/middleware-expect-continue');

const client = new S3Client({});
client.middlewareStack.add(expectContinueMiddleware(), {
  step: 'build',
  priority: 'high',
});

Customizing Expect-Continue Middleware

This feature allows you to customize the Expect-Continue middleware by setting options such as the continue timeout. In this example, the continue timeout is set to 3000 milliseconds.

const { S3Client } = require('@aws-sdk/client-s3');
const { expectContinueMiddleware } = require('@aws-sdk/middleware-expect-continue');

const client = new S3Client({});
client.middlewareStack.add(expectContinueMiddleware({
  continueTimeout: 3000 // Custom timeout in milliseconds
}), {
  step: 'build',
  priority: 'high',
});

Other packages similar to @aws-sdk/middleware-expect-continue

FAQs

Package last updated on 14 Feb 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc