[](https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3) [](https://www.npmjs.com/package/@
[](https://www.npmjs.com/package/@smithy/types) [](https://www.npmjs.com/package/@smithy/types)
AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native
[](https://www.npmjs.com/package/@aws-sdk/s3-request-presigner) [](https://www.npmjs.com/
[](https://www.npmjs.com/package/@aws-sdk/util-user-agent-browser) [](https://www.n
A promise based streaming tokenizer
[](https://www.npmjs.com/package/@aws-sdk/s3-presigned-post) [](https://www.npmjs.com/package/@
Rush plugin for Amazon S3 cloud build cache
[](https://www.npmjs.com/package/@aws-sdk/middleware-sdk-s3-control) [](https:/
Streaming multer storage engine for AWS S3
Official `aws-lite` plugin for S3
Upload to Amazon S3 with Uppy
TypeScript definitions for multer-s3
Fetch and publish snapshot images to AWS S3.
S3 Compatible Cloud Storage client
AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native
AWS CLI s3 sync for Node.js provides a modern client to perform S3 sync operations between file systems and S3 buckets in the spirit of the official AWS CLI command
No description provided.
Tokenized zip support
Event Mocks is a simple library designed to generate simple AWS events for testing and automation purposes.
Payload storage adapter for Amazon S3
Amazon S3 client for upload/download files
Pretender is a mock server library for XMLHttpRequest and Fetch, that comes with an express/sinatra style syntax for defining routes and their handlers.
Fake S3 server for node
An implementation of the Amazon S3 API in Ruby
Manage assets on Sinatra apps with Sprockets and S3
# Rack HTTP Pipe Use to pipe directly a remote HTTP file without buffering it. > /!\ Do not work with WebBrick, tested with puma ## Use case * Given a file named #HASH#.pdf on S3 * You want a clean URL and handling the authentication in front of it ``` GET http:/example.com/download Content-Disposition: attachment;filename=name-fetched-from-db.pdf Content-Length Content-Type etc. ``` ## Usage ```ruby get "/" do http_pipe "http://example.com/iso-ubuntu-1404-64bits", { status: 200, headers: { "Content-Type: application/octet-stream", "Content-Disposition: attachment;filename=ubuntu.iso", } } end ``` See the example directory for an example app using sinatra