canirequire

canirequireCommonJS › vue-style-loader

Is vue-style-loader ESM-only? Can you require() it?

Vue.js style loader module for webpack

Last verified Sep 9, 2026 against vue-style-loader@4.1.3. JSON

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

vue-style-loader ships CommonJS only. require("vue-style-loader") works everywhere. import "vue-style-loader" 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
4.1.3 (Mar 3, 2021)
Module format
CommonJS
Last CommonJS version
4.1.3
TypeScript types
None
Node engines
not declared
Weekly downloads
1.3M
License
MIT

Does vue-style-loader@4.1.3 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("vue-style-loader") from a CommonJS file and import "vue-style-loader" from an ES module.

Runtimerequire("vue-style-loader")import "vue-style-loader"
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 vue-style-loader

ES modules (import)

import vueStyleLoader from "vue-style-loader";

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 vueStyleLoader = require("vue-style-loader");

Module format by version

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

VersionsFormatFirst published
1.0.0 – 4.1.3CommonJSJan 5, 2016

Frequently asked

Is vue-style-loader ESM-only?

vue-style-loader@4.1.3 is a CommonJS package. vue-style-loader ships CommonJS only. require("vue-style-loader") works everywhere. import "vue-style-loader" 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 vue-style-loader with ES module syntax?

Yes. import vueStyleLoader from "vue-style-loader" 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 vue-style-loader work in Bun?

Yes. import "vue-style-loader" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does vue-style-loader ship TypeScript types?

No. vue-style-loader ships no type declarations and there is no @types package for it.

Links

Other commonjs packages

Similar popularity