canirequire › Dual (CommonJS + ESM) › vuex
Is vuex ESM-only? Can you require() it?
state management for Vue.js
Last verified Sep 9, 2026 against vuex@4.1.0. JSON
Dual (CommonJS + ESM) Dual package — both require() and import work
vuex publishes both a CommonJS entry and a native ESM entry (ESM added in 3.6.0). require("vuex") and import "vuex" both work on every supported Node.js version and in Bun.
Does vuex@4.1.0 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("vuex") from a CommonJS file and import "vuex" from an ES module.
| Runtime | require("vuex") | import "vuex" |
|---|---|---|
| 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 vuex
ES modules (import)
import vuex from "vuex";CommonJS (require)
const vuex = require("vuex");Module format by version
Derived from the type, main and exports fields of every stable release on npm (48 versions; the newest 48 shown).
| Versions | Format | First published |
|---|---|---|
| 3.6.0 – 4.1.0 | Dual (CommonJS + ESM) | Nov 25, 2020 |
| 0.1.0 – 3.5.1 | CommonJS | Dec 6, 2015 |
Frequently asked
Is vuex ESM-only?
vuex@4.1.0 ships CommonJS and ESM builds. vuex publishes both a CommonJS entry and a native ESM entry (ESM added in 3.6.0). require("vuex") and import "vuex" both work on every supported Node.js version and in Bun.
Can I require vuex?
Yes. vuex ships a CommonJS entry, so require("vuex") works on every Node.js version, alongside the native ESM entry for import.
Does vuex work in Bun?
Yes. import "vuex" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does vuex ship TypeScript types?
Yes. vuex bundles its own type declarations; no @types package is needed.
Links
Other dual (commonjs + esm) packages
- minimatch 10.2.6Dual
- brace-expansion 5.0.9Dual
- lru-cache 11.5.2Dual
- glob 13.0.6Dual
- eslint-visitor-keys 5.0.1Dual
- yallist 5.0.0Dual
- balanced-match 4.0.4Dual
- js-yaml 5.4.1Dual
Similar popularity
- express-validator 7.3.2CommonJS
- config 5.0.1CommonJS
- eslint-config-airbnb-typescript 18.0.0CommonJS
- commitizen 4.3.2CommonJS
- prettier-plugin-svelte 4.1.1CommonJS
- babel-register 6.26.0CommonJS
- crypto 1.0.1CommonJS
- react-bootstrap 2.10.10CommonJS