canirequire

canirequireCommonJS › html-webpack-plugin

Is html-webpack-plugin ESM-only? Can you require() it?

Simplifies creation of HTML files to serve your webpack bundles

Last verified Sep 9, 2026 against html-webpack-plugin@5.6.8. JSON

CommonJS CommonJS — require() works on every Node.js version

html-webpack-plugin ships CommonJS only. require("html-webpack-plugin") works everywhere. import "html-webpack-plugin" 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
5.6.8 (Jul 25, 2026)
Module format
CommonJS
Last CommonJS version
5.6.8
TypeScript types
Bundled
Node engines
>=10.13.0
Weekly downloads
13.3M
License
MIT

Does html-webpack-plugin@5.6.8 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("html-webpack-plugin") from a CommonJS file and import "html-webpack-plugin" from an ES module.

Runtimerequire("html-webpack-plugin")import "html-webpack-plugin"
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 html-webpack-plugin

ES modules (import)

import htmlWebpackPlugin from "html-webpack-plugin";

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 htmlWebpackPlugin = require("html-webpack-plugin");

Module format by version

Derived from the type, main and exports fields of every stable release on npm (109 versions; the newest 60 shown).

VersionsFormatFirst published
2.21.0 – 5.6.8CommonJSJun 12, 2016

Frequently asked

Is html-webpack-plugin ESM-only?

html-webpack-plugin@5.6.8 is a CommonJS package. html-webpack-plugin ships CommonJS only. require("html-webpack-plugin") works everywhere. import "html-webpack-plugin" 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 html-webpack-plugin with ES module syntax?

Yes. import htmlWebpackPlugin from "html-webpack-plugin" 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 html-webpack-plugin work in Bun?

Yes. import "html-webpack-plugin" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does html-webpack-plugin ship TypeScript types?

Yes. html-webpack-plugin bundles its own type declarations; no @types package is needed.

Links

Other commonjs packages

Similar popularity