canirequire › CommonJS › gulp-util
Is gulp-util ESM-only? Can you require() it?
Utility functions for gulp plugins
Last verified Sep 9, 2026 against gulp-util@3.0.8. JSON
CommonJS CommonJS — require() works on every Node.js version
gulp-util ships CommonJS only. require("gulp-util") works everywhere. import "gulp-util" 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.
Deprecated: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
Does gulp-util@3.0.8 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("gulp-util") from a CommonJS file and import "gulp-util" from an ES module.
| Runtime | require("gulp-util") | import "gulp-util" |
|---|---|---|
| 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 gulp-util
ES modules (import)
import gulpUtil from "gulp-util";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 gulpUtil = require("gulp-util");Module format by version
Derived from the type, main and exports fields of every stable release on npm (40 versions; the newest 40 shown).
| Versions | Format | First published |
|---|---|---|
| 0.0.1 – 3.0.8 | CommonJS | Jul 6, 2013 |
Frequently asked
Is gulp-util ESM-only?
gulp-util@3.0.8 is a CommonJS package. gulp-util ships CommonJS only. require("gulp-util") works everywhere. import "gulp-util" 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 gulp-util with ES module syntax?
Yes. import gulpUtil from "gulp-util" 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 gulp-util work in Bun?
Yes. import "gulp-util" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does gulp-util ship TypeScript types?
Not bundled. Install the community types with "npm install -D @types/gulp-util".
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
- stylus-loader 9.0.0Dual
- node-uuid 1.4.8CommonJS
- discord.js 14.27.0Dual
- shortid 2.2.17CommonJS
- istanbul 0.4.5CommonJS
- postcss-url 10.1.4CommonJS
- coffee-script 1.12.7CommonJS
- gulp-rename 2.1.0CommonJS