No description provided.
Create and parse Content-Disposition header
Create and parse Content-Disposition header
TypeScript definitions for content-disposition
content-disposition rewrite in TypeScript
TypeScript definitions for koa
A javascript/nodejs multipart/form-data parser which operates on raw data.
content-disposition rewrite with browser and Node.js support
Parse Content-Disposition HTTP header. No dependencies, no errors, just parse.
A library to parse "attachment"s in Content-Disposition.
file downloading using client-side javascript
An HTML5 saveAs() FileSaver implementation
A javascript/nodejs multipart/form-data parser which operates on raw data.
A zero-dependency multipart/form-data parser
A javascript/nodejs multipart/form-data parser which operates on raw data forked from parse-mulitpart-data to add the LICENSE file.
Read filename from content disposition header
jsreport recipe for rendering plain text from html
A simple wrapper for wkhtmltopdf
Solana wallet adapter module for [Censo Custody](https://censocustody.com)
Solana wallet adapter module for the [Strike Protocols Wallet](https://strikeprotocols.com)
An HTML5 saveAs() FileSaver implementation
A Node.js module for the Paubox Transactional Email API.
A javascript/nodejs multipart/form-data parser which operates on raw data.
No description provided.
Backport https://github.com/rails/rails/pull/33829 to older Rails
Ruby gem to create HTTP Content-Disposition headers with proper escaping/encoding of filenames
# 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