aws4fetch icon indicating copy to clipboard operation
aws4fetch copied to clipboard

A compact AWS client for modern JS environments

Results 28 aws4fetch issues
Sort by recently updated
recently updated
newest added

When I use `aws s3 presign` like this, ``` AWS_REGION=ap-northeast-1 \ AWS_ACCESS_KEY_ID=AKIA................ \ AWS_SECRET_ACCESS_KEY=........................................ \ aws s3 presign 's3://BUCKET_NAME/BUCKET_KEY' ``` I get a URL like this, which works. ``` https://BUCKET_NAME.s3.ap-northeast-1.amazonaws.com/BUCKET_KEY...

Would it be possible to add R2 support to https://github.com/mhart/aws4fetch/blob/447d747ab99bd7cb58afbe1da9b1af88c787cae7/src/main.js#L376 to make things easier on R2 users? I know this is an AWS-focused library so it's OK if the answer...

works well in the browser however there are some differences in the WebAPI vs node. Are you planning to add SSR support as well? Thanks

Hi, I've encountered trouble signing requests containing a Range HTTP-header (used for "multipart"/ multiple-connection downloads). Looking at the source of this package, the header is marked as unsignable (unsignableHeader array...

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Scenario: Sending large post with byte array using ReadableStream for performance reasons. Expected Behavior: ReadableStream is sent to S3 via a streaming read, offering improved performance. Actual Behavior: Receive "body...

Hi, Thanks for the great lib. I have it currently working to send emails through SES from a cloudflare worker. I now was hoping to use the Lib to send...

I am new to CF Workers so decided to first create an issue rather than creating a PR with changes to docs. When I try to run your example I...