eoinsha / aws-signed-axios

Make AWSv4 signed requests with Axios

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-signed-axios

license

Make HTTP requests with an AWSv4 signature. This library wraps https://github.com/axios/axios and signs requests using aws4. In its current form, this module wraps the axios request() function when a URL is provided. Contributions are welcome for other features.

Usage

npm install --save aws-signed-axios
const signedRequest = require('aws-signed-axios')

const response = signedAxios({
  method: 'GET',
  url
}).then(response => ...)

LICENSE

MIT

About

Make AWSv4 signed requests with Axios

License:MIT License


Languages

Language:JavaScript 100.0%