canirequire › CommonJS › file-saver
Is file-saver ESM-only? Can you require() it?
An HTML5 saveAs() FileSaver implementation
Last verified Sep 9, 2026 against file-saver@2.0.5. JSON
CommonJS CommonJS — require() works on every Node.js version
file-saver ships CommonJS only. require("file-saver") works everywhere. import "file-saver" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.
Does file-saver@2.0.5 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("file-saver") from a CommonJS file and import "file-saver" from an ES module.
| Runtime | require("file-saver") | import "file-saver" |
|---|---|---|
| Node.js 18 | ✓ works | ✓ works |
| Node.js 20 | ✓ works | ✓ works |
| Node.js 22 | ✓ works | ✓ works |
| Node.js 24 | ✓ works | ✓ works |
| Node.js 26 | ✓ works | ✓ works |
| Bun 1.4 | ✓ works | ✓ works |
How to import file-saver
ES modules (import)
import fileSaver from "file-saver";Named imports from a CommonJS package only work when Node.js can statically detect them. If a named import fails, use the default import and destructure.
CommonJS (require)
const fileSaver = require("file-saver");Module format by version
Derived from the type, main and exports fields of every stable release on npm (14 versions; the newest 14 shown).
| Versions | Format | First published |
|---|---|---|
| 1.2.0 – 2.0.5 | CommonJS | May 25, 2016 |
Frequently asked
Is file-saver ESM-only?
file-saver@2.0.5 is a CommonJS package. file-saver ships CommonJS only. require("file-saver") works everywhere. import "file-saver" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.
Can I import file-saver with ES module syntax?
Yes. import fileSaver from "file-saver" works in Node.js and Bun because they support importing CommonJS modules. Named imports work only when Node.js can statically detect the exports.
Does file-saver work in Bun?
Yes. import "file-saver" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does file-saver ship TypeScript types?
Not bundled. Install the community types with "npm install -D @types/file-saver".
Links
Other commonjs packages
- debug 4.4.3CommonJS
- semver 7.8.5CommonJS
- ms 2.1.3CommonJS
- picomatch 4.0.7CommonJS
- ajv 8.20.0CommonJS
- source-map 0.8.0CommonJS
- react-is 19.2.8CommonJS
- readable-stream 4.7.0CommonJS
Similar popularity
- vue-tsc 3.3.11CommonJS
- bcrypt 6.0.0CommonJS
- postcss-scss 4.0.9Dual
- babel-plugin-dynamic-import-node 2.3.3CommonJS
- log4js 6.9.1CommonJS
- eslint-plugin-simple-import-sort 14.0.0CommonJS
- jasmine-core 7.0.2CommonJS
- react-dnd 16.0.1ESM-only