0.2.0 • Published 7 years ago
download-in-browser v0.2.0
download-in-browser
download-in-browser allows you to initiate a file download from your
browser's current window and then respond using a Promise.
Installation
npm install download-in-browserUsage
Download
Download a file by URL, with an optional fileName param. It will make an XMLHttpRequest
GET request in order to grab the response headers from the URL.
After receiving the headers, the download function will abort the request (so
as to not begin streaming the download) and respond with a Promise that will
be resolved or rejected with the following properties from the XMLHttpRequest
object, depending on the response status,
{
status: xhr.status,
statusText: xhr.statusText
}At the same time the Promise is dispatched and if the GET request was successful,
an invisible link will be created and then followed, initiating the download.
Example,
const download = require("download-in-browser")
download("https://github.com/ezekg/download-in-browser/blob/master/README.md", "readme.md")
.then((data) => console.log(`${data.statusText}: Download has started...`))
.catch((err) => console.log(`${err.statusText}: Download failed to start`))License
MIT © Ezekiel Gabrielse