canirequire

canirequireCommonJS › mockjs

Is mockjs ESM-only? Can you require() it?

生成随机数据 & 拦截 Ajax 请求

Last verified Sep 9, 2026 against mockjs@1.1.0. JSON

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

mockjs ships CommonJS only. require("mockjs") works everywhere. import "mockjs" 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
1.1.0 (Oct 25, 2019)
Module format
CommonJS
Last CommonJS version
1.1.0
TypeScript types
@types/mockjs
Node engines
not declared
Weekly downloads
76K
License
unknown

Does mockjs@1.1.0 actually load? Runtime test results

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

Runtimerequire("mockjs")import "mockjs"
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 mockjs

ES modules (import)

import mockjs from "mockjs";

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 mockjs = require("mockjs");

Module format by version

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

VersionsFormatFirst published
0.1.1 – 1.1.0CommonJSSep 23, 2013

Frequently asked

Is mockjs ESM-only?

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

Yes. import mockjs from "mockjs" 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 mockjs work in Bun?

Yes. import "mockjs" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does mockjs ship TypeScript types?

Not bundled. Install the community types with "npm install -D @types/mockjs".

Links

Other commonjs packages

Similar popularity