Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
aws4-axios
Advanced tools
This is a request interceptor for the Axios HTTP request library to allow requests to be signed with an AWSv4 signature.
This may be useful for accessing AWS services protected with IAM auth such as an API Gateway.
yarn | npm |
---|---|
yarn add aws4-axios | npm install --save aws4-axios |
To add an interceptor to the default Axios client:
import axios from "axios";
import { aws4Interceptor } from "aws4-axios";
const interceptor = aws4Interceptor({
region: "eu-west-2",
service: "execute-api",
});
axios.interceptors.request.use(interceptor);
// Requests made using Axios will now be signed
axios.get("https://example.com/foo").then((res) => {
// ...
});
Or you can add the interceptor to a specific instance of an Axios client:
import axios from "axios";
import { aws4Interceptor } from "aws4-axios";
const client = axios.create();
const interceptor = aws4Interceptor({
region: "eu-west-2",
service: "execute-api",
});
client.interceptors.request.use(interceptor);
// Requests made using Axios will now be signed
client.get("https://example.com/foo").then((res) => {
// ...
});
You can also pass AWS credentials in explicitly (otherwise taken from process.env)
const interceptor = aws4Interceptor(
{
region: "eu-west-2",
service: "execute-api",
},
{
accessKeyId: "",
secretAccessKey: "",
}
);
You can pass a parameter to assume the IAM Role with AWS STS and use the assumed role credentials to sign the request. This is useful when doing cross-account requests.
const interceptor = aws4Interceptor(
{
region: "eu-west-2",
service: "execute-api",
assumeRoleArn: "arn:aws:iam::111111111111:role/MyRole",
}
);
Obtained credentials are cached and refreshed as needed after they expire.
You can use expirationMarginSec
parameter to set the number of seconds
before the received credentials expiration time to invalidate the cache.
This allows setting a safety margin. Default to 5 seconds.
Thanks goes to these wonderful people (emoji key):
Florian Bischoff 💻 | Ruben van Rooij 💻 | Roman 👀 | Maciej Radzikowski ⚠️ 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
Axios request interceptor for signing requests with AWSv4
The npm package aws4-axios receives a total of 0 weekly downloads. As such, aws4-axios popularity was classified as not popular.
We found that aws4-axios demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.