canirequire

canirequireCommonJS › svelte-check

Is svelte-check ESM-only? Can you require() it?

Svelte Code Checker Terminal Interface

Last verified Sep 9, 2026 against svelte-check@4.7.6. JSON

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

svelte-check ships CommonJS only. require("svelte-check") works everywhere. import "svelte-check" 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.7.6 (Aug 13, 2026)
Module format
CommonJS
Last CommonJS version
4.7.6
TypeScript types
None
Node engines
>= 18.0.0
Weekly downloads
2.2M
License
MIT

Does svelte-check@4.7.6 actually load? Runtime test results

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

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

ES modules (import)

import svelteCheck from "svelte-check";

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 svelteCheck = require("svelte-check");

Module format by version

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

VersionsFormatFirst published
3.6.5 – 4.7.6CommonJSFeb 27, 2024

Frequently asked

Is svelte-check ESM-only?

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

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

Yes. import "svelte-check" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does svelte-check ship TypeScript types?

No. svelte-check ships no type declarations and there is no @types package for it.

Links

Other commonjs packages

Similar popularity