canirequire

canirequireCommonJS › 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.

Latest
2.4.1 (Nov 27, 2020)
Module format
CommonJS
Last CommonJS version
2.4.1
TypeScript types
@types/copyfiles
Node engines
not declared
Weekly downloads
1.9M
License
MIT

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.

Runtimerequire("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).

VersionsFormatFirst published
0.0.1 – 2.4.1CommonJSMar 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

Similar popularity