canirequire › CommonJS › copyfiles
Is copyfiles ESM-only? Can you require() it?
copy some files
Last verified Sep 9, 2026 against copyfiles@2.4.1. JSON
CommonJS CommonJS — require() works on every Node.js version
copyfiles ships CommonJS only. require("copyfiles") works everywhere. import "copyfiles" 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 copyfiles@2.4.1 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("copyfiles") from a CommonJS file and import "copyfiles" from an ES module.
| Runtime | require("copyfiles") | import "copyfiles" |
|---|---|---|
| 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 copyfiles
ES modules (import)
import copyfiles from "copyfiles";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 copyfiles = require("copyfiles");Module format by version
Derived from the type, main and exports fields of every stable release on npm (18 versions; the newest 18 shown).
| Versions | Format | First published |
|---|---|---|
| 0.0.1 – 2.4.1 | CommonJS | Mar 19, 2014 |
Frequently asked
Is copyfiles ESM-only?
copyfiles@2.4.1 is a CommonJS package. copyfiles ships CommonJS only. require("copyfiles") works everywhere. import "copyfiles" 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 copyfiles with ES module syntax?
Yes. import copyfiles from "copyfiles" 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 copyfiles work in Bun?
Yes. import "copyfiles" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does copyfiles ship TypeScript types?
Not bundled. Install the community types with "npm install -D @types/copyfiles".
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
- rollup-plugin-typescript2 0.37.0CommonJS
- pnp-webpack-plugin 1.7.0CommonJS
- rollup-plugin-dts 6.5.1Dual
- sequelize 6.37.8Dual
- vue-loader 17.4.2CommonJS
- karma-jasmine-html-reporter 2.3.0CommonJS
- karma-coverage 2.2.1CommonJS
- faker 6.6.6CommonJS