Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eoinsha/aws-signed-axios
Make AWSv4 signed requests with Axios
https://github.com/eoinsha/aws-signed-axios
Last synced: 15 days ago
JSON representation
Make AWSv4 signed requests with Axios
- Host: GitHub
- URL: https://github.com/eoinsha/aws-signed-axios
- Owner: eoinsha
- License: mit
- Created: 2019-07-03T06:41:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T23:34:48.000Z (almost 2 years ago)
- Last Synced: 2024-11-28T21:52:31.278Z (about 1 month ago)
- Language: JavaScript
- Size: 553 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-signed-axios
[![license](https://img.shields.io/npm/l/aws-signed-axios.svg)](./LICENSE)
Make HTTP requests with an AWSv4 signature. This library wraps [https://github.com/axios/axios](axios) and signs requests using [aws4](https://github.com/mhart/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](./LICENSE)