Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/monken/aws-sdk-proxy
Transparently add proxy support to the aws-sdk-js package
https://github.com/monken/aws-sdk-proxy
Last synced: about 1 month ago
JSON representation
Transparently add proxy support to the aws-sdk-js package
- Host: GitHub
- URL: https://github.com/monken/aws-sdk-proxy
- Owner: monken
- License: mit
- Created: 2016-11-12T20:40:25.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-12T20:51:06.000Z (about 8 years ago)
- Last Synced: 2024-11-20T16:39:37.614Z (about 2 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-sdk-proxy
Transparently add proxy support to the aws-sdk-js package## Usage
```javascript
var AWS = require('aws-sdk-proxy'),
s3 = new AWS.S3();s3.getObject({});
```## Description
`aws-sdk-proxy` will configure `aws-sdk` to use a proxy when either the `HTTPS_PROXY` or `https_proxy` environmental variables are defined. This package requires `proxy-agent` to be installed. It is not installed as part of `aws-sdk-proxy` because it's quite heavy and the proxy functionality might only be required in a development environment.