Create and parse Content-Disposition header
content-disposition rewrite with browser and Node.js support
Read filename from content disposition header
Create and parse Content-Disposition header
Create and parse Content-Disposition header
Parse Content-Disposition header
Create and parse Content-Disposition header
js parse content disposition header
Create and parse Content-Disposition header
Create and parse Content-Disposition header (with updated dependencies)
TypeScript definitions for content-disposition
content-disposition rewrite in TypeScript
Parse Content-Disposition HTTP header. No dependencies, no errors, just parse.
A javascript/nodejs multipart/form-data parser which operates on raw data.
TypeScript definitions for koa
A library to parse "attachment"s in Content-Disposition.
An HTML5 saveAs() FileSaver implementation
[](https://www.npmjs.com/package/@aws-sdk/middleware-host-header) [](https://www.npmj
OpenTelemetry B3 propagator provides context propagation for systems that are using the B3 header format
help secure Express/Connect apps with various HTTP headers
file downloading using client-side javascript
Implementation of Structured Field Values for HTTP (RFC9651, RFC8941)
Range header field string parser
A Node.js module for the Paubox Transactional Email API.
Ruby gem to create HTTP Content-Disposition headers with proper escaping/encoding of filenames
Rack::ContentDispositionHelper is Rack middleware that rewrites the decoded filename* directive in the Content-Disposition response header as the value of the filename directive.
# 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