canirequire › CommonJS › child_process
Is child_process ESM-only? Can you require() it?
This package name is not currently in use, but was formerly occupied by another package. To avoid malicious use, npm is hanging on to the package name, but loosely, and we'll probably give it to you if you want it.
Last verified Sep 9, 2026 against child_process@1.0.2. JSON
CommonJS CommonJS — require() works on every Node.js version
child_process ships CommonJS only. require("child_process") works everywhere. import "child_process" 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 child_process@1.0.2 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("child_process") from a CommonJS file and import "child_process" from an ES module.
| Runtime | require("child_process") | import "child_process" |
|---|---|---|
| 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 child_process
ES modules (import)
import childProcess from "child_process";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 childProcess = require("child_process");Module format by version
Derived from the type, main and exports fields of every stable release on npm (1 versions; the newest 1 shown).
| Versions | Format | First published |
|---|---|---|
| 1.0.2 | CommonJS | Aug 26, 2016 |
Frequently asked
Is child_process ESM-only?
child_process@1.0.2 is a CommonJS package. child_process ships CommonJS only. require("child_process") works everywhere. import "child_process" 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 child_process with ES module syntax?
Yes. import childProcess from "child_process" 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 child_process work in Bun?
Yes. import "child_process" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does child_process ship TypeScript types?
No. child_process ships no type declarations and there is no @types package for it.
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
- jsdoc-to-markdown 9.1.3Dual
- react-addons-test-utils 15.6.2CommonJS
- gulp-less 5.0.0CommonJS
- istanbul-instrumenter-loader 3.0.1CommonJS
- ember-cli-dependency-checker 3.3.3CommonJS
- grunt-contrib-connect 5.0.1CommonJS
- vinyl-buffer 1.0.1CommonJS
- rollup-plugin-node-builtins 2.1.2CommonJS