An HTML5 saveAs() FileSaver implementation
Installations
npm install file-saver
Developer Guide
Typescript
No
Module System
CommonJS
Node Version
15.2.0
NPM Version
7.0.8
Score
99.9
Supply Chain
99.5
Quality
78.3
Maintenance
100
Vulnerability
100
License
Releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (100%)
Developer
Download Statistics
Total Downloads
588,036,621
Last Day
98,409
Last Week
3,034,749
Last Month
12,345,493
Last Year
152,527,030
GitHub Statistics
21,715 Stars
332 Commits
4,379 Forks
367 Watching
10 Branches
57 Contributors
Bundle Size
2.82 kB
Minified
1.31 kB
Minified + Gzipped
Package Meta Information
Latest Version
2.0.5
Package Id
file-saver@2.0.5
Size
10.32 kB
NPM Version
7.0.8
Node Version
15.2.0
Publised On
19 Nov 2020
Total Downloads
Cumulative downloads
Total Downloads
588,036,621
Last day
-8.4%
98,409
Compared to previous day
Last week
-3.2%
3,034,749
Compared to previous week
Last month
-6%
12,345,493
Compared to previous month
Last year
-11.8%
152,527,030
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
If you need to save really large files bigger than the blob's size limitation or don't have enough RAM, then have a look at the more advanced StreamSaver.js that can save data directly to the hard drive asynchronously with the power of the new streams API. That will have support for progress, cancelation and knowing when it's done writing
FileSaver.js
FileSaver.js is the solution to saving files on the client-side, and is perfect for web apps that generates files on the client, However if the file is coming from the server we recommend you to first try to use Content-Disposition attachment response header as it has more cross-browser compatiblity.
Looking for canvas.toBlob()
for saving canvases? Check out
canvas-toBlob.js for a cross-browser implementation.
Supported Browsers
Browser | Constructs as | Filenames | Max Blob Size | Dependencies |
---|---|---|---|---|
Firefox 20+ | Blob | Yes | 800 MiB | None |
Firefox < 20 | data: URI | No | n/a | Blob.js |
Chrome | Blob | Yes | 2GB | None |
Chrome for Android | Blob | Yes | RAM/5 | None |
Edge | Blob | Yes | ? | None |
IE 10+ | Blob | Yes | 600 MiB | None |
Opera 15+ | Blob | Yes | 500 MiB | None |
Opera < 15 | data: URI | No | n/a | Blob.js |
Safari 6.1+* | Blob | No | ? | None |
Safari < 6 | data: URI | No | n/a | Blob.js |
Safari 10.1+  | Blob     | Yes     | n/a      | None |
Feature detection is possible:
1try { 2 var isFileSaverSupported = !!new Blob; 3} catch (e) {}
IE < 10
It is possible to save text files in IE < 10 without Flash-based polyfills.
See ChenWenBrian and koffsyrup's saveTextAs()
for more details.
Safari 6.1+
Blobs may be opened instead of saved sometimes—you may have to direct your Safari users to manually
press ⌘+S to save the file after it is opened. Using the application/octet-stream
MIME type to force downloads can cause issues in Safari.
iOS
saveAs must be run within a user interaction event such as onTouchDown or onClick; setTimeout will prevent saveAs from triggering. Due to restrictions in iOS saveAs opens in a new window instead of downloading, if you want this fixed please tell Apple how this WebKit bug is affecting you.
Syntax
Import saveAs()
from file-saver
1import { saveAs } from 'file-saver';
1FileSaver saveAs(Blob/File/Url, optional DOMString filename, optional Object { autoBom })
Pass { autoBom: true }
if you want FileSaver.js to automatically provide Unicode text encoding hints (see: byte order mark). Note that this is only done if your blob type has charset=utf-8
set.
Examples
Saving text using require()
1var FileSaver = require('file-saver'); 2var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"}); 3FileSaver.saveAs(blob, "hello world.txt");
Saving text
1var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
2FileSaver.saveAs(blob, "hello world.txt");
Saving URLs
1FileSaver.saveAs("https://httpbin.org/image", "image.jpg");
Using URLs within the same origin will just use a[download]
.
Otherwise, it will first check if it supports cors header with a synchronous head request.
If it does, it will download the data and save using blob URLs.
If not, it will try to download it using a[download]
.
The standard W3C File API Blob
interface is not available in all browsers.
Blob.js is a cross-browser Blob
implementation that solves this.
Saving a canvas
1var canvas = document.getElementById("my-canvas");
2canvas.toBlob(function(blob) {
3 saveAs(blob, "pretty image.png");
4});
Note: The standard HTML5 canvas.toBlob()
method is not available in all browsers.
canvas-toBlob.js is a cross-browser canvas.toBlob()
that polyfills this.
Saving File
You can save a File constructor without specifying a filename. If the file itself already contains a name, there is a hand full of ways to get a file instance (from storage, file input, new constructor, clipboard event). If you still want to change the name, then you can change it in the 2nd argument.
1// Note: Ie and Edge don't support the new File constructor,
2// so it's better to construct blobs and use saveAs(blob, filename)
3var file = new File(["Hello, world!"], "hello world.txt", {type: "text/plain;charset=utf-8"});
4FileSaver.saveAs(file);
Installation
1# Basic Node.JS installation 2npm install file-saver --save 3bower install file-saver
Additionally, TypeScript definitions can be installed via:
1# Additional typescript definitions 2npm install @types/file-saver --save-dev
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
- Info: project has a license file: LICENSE.md:0
- Warn: project license file does not contain an FSF or OSI license.
Reason
Found 9/14 approved changesets -- score normalized to 6
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
- Warn: 0 commits out of 25 are checked with a SAST tool
Reason
25 existing vulnerabilities detected
Details
- Warn: Project is vulnerable to: GHSA-67hx-6x53-jw92
- Warn: Project is vulnerable to: GHSA-grv7-fg5c-xmjg
- Warn: Project is vulnerable to: GHSA-gxpj-cx7g-858c
- Warn: Project is vulnerable to: GHSA-w573-4hg7-7wgq
- Warn: Project is vulnerable to: GHSA-8r6j-v8pm-fqw3
- Warn: Project is vulnerable to: MAL-2023-462
- Warn: Project is vulnerable to: GHSA-qqgx-2p2h-9c37
- Warn: Project is vulnerable to: GHSA-9c47-m6qq-7p4h
- Warn: Project is vulnerable to: GHSA-6c8f-qphg-qjgp
- Warn: Project is vulnerable to: GHSA-p6mc-m468-83gw
- Warn: Project is vulnerable to: GHSA-29mw-wpgm-hmr9
- Warn: Project is vulnerable to: GHSA-35jh-r3h4-6jhm
- Warn: Project is vulnerable to: GHSA-952p-6rrq-rcjv
- Warn: Project is vulnerable to: GHSA-f8q6-p94x-37v3
- Warn: Project is vulnerable to: GHSA-vh95-rmgr-6w4m / GHSA-xvch-5gv4-984h
- Warn: Project is vulnerable to: GHSA-hj48-42vr-x3v9
- Warn: Project is vulnerable to: GHSA-c2qf-rxjj-qqgw
- Warn: Project is vulnerable to: GHSA-4g88-fppr-53pp
- Warn: Project is vulnerable to: GHSA-4jqc-8m5r-9rpr
- Warn: Project is vulnerable to: GHSA-3jfq-g458-7qm9
- Warn: Project is vulnerable to: GHSA-r628-mhmh-qjhw
- Warn: Project is vulnerable to: GHSA-9r2w-394v-53qc
- Warn: Project is vulnerable to: GHSA-5955-9wpr-37jh
- Warn: Project is vulnerable to: GHSA-qq89-hq3f-393p
- Warn: Project is vulnerable to: GHSA-f5x3-32g6-xq36
Score
2.5
/10
Last Scanned on 2024-12-16
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More