Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aws4-axios

Package Overview
Dependencies
Maintainers
1
Versions
103
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aws4-axios

Axios request interceptor for signing requests with AWSv4

  • 3.3.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
123K
decreased by-6.64%
Maintainers
1
Weekly downloads
 
Created

What is aws4-axios?

The aws4-axios package is a middleware for Axios that automatically signs AWS requests using AWS Signature Version 4. It simplifies the process of making authenticated HTTP requests to AWS services.

What are aws4-axios's main functionalities?

AWS Request Signing

This feature allows you to make signed HTTP requests to AWS services using Axios. The aws4-axios middleware automatically handles the signing process, making it easier to interact with AWS APIs securely.

const axios = require('axios');
const aws4 = require('aws4-axios');

const client = aws4(axios);

client.get('https://my-api.execute-api.us-east-1.amazonaws.com/prod/resource')
  .then(response => console.log(response.data))
  .catch(error => console.error(error));

Other packages similar to aws4-axios

Keywords

FAQs

Package last updated on 10 Dec 2024

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