
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
vite-plugin-cjs-interop
Advanced tools
Vite plugin to unwrap default imports from CJS dependencies during SSR
vite-plugin-cjs-interopVite plugin to unwrap default imports from CJS dependencies during SSR.
In Node.js, when a CJS module that contains both a default export and named exports is imported from an ESM module, the default export has to be accessed via the default property of the imported module. Prior to version 5, Vite had some logic to handle this during development, but it didn't apply to SSR builds with external CJS dependencies. Since Vite 5, the problem happens in development as well. You don't get any indication that it won't work in production. TypeScript doesn't complain either.
This plugin will automatically unwrap the default export from CJS dependencies that you specify during SSR builds. In other words, the following code:
import foo, { named, named2 as renamed } from "foo";
will be transformed into:
const {
default: foo = __cjsInterop1__,
named,
named2: renamed,
} = __cjsInterop1__?.default?.__esModule
? __cjsInterop1__.default
: __cjsInterop1__;
import __cjsInterop1__ from "foo";
which takes care of unwrapping the default export and creating a synthetic default export if necessary.
The change for dynamic imports is more complicated, but allows the import() function to resolve to an object that not only resembles the standard ES6 namespace as expected, but also a CommonJS export:
const foo = await import("foo");
// ES6 namespace, with default export
foo.default.bar(); // Works
// CommonJS Module (some libraries expect this to work because webpack allows it)
foo.bar(); // Also works
npm install -D vite-plugin-cjs-interop
// vite.config.js
import { cjsInterop } from "vite-plugin-cjs-interop";
export default {
plugins: [
cjsInterop({
// List of CJS dependencies that require interop
dependencies: [
"some-package",
// Deep imports should be specified separately
"some-package/deep/import",
// But globs are supported
"some-package/foo/*",
// Even deep globs for scoped packages
"@some-scope/**",
// If you want to skip a specific package, you can use negative globs
"!@donottransformme/**",
],
}),
],
};
The matcher uses minimatch underneath, for more details on supported syntax.
FAQs
Vite plugin to unwrap default imports from CJS dependencies during SSR
The npm package vite-plugin-cjs-interop receives a total of 221,636 weekly downloads. As such, vite-plugin-cjs-interop popularity was classified as popular.
We found that vite-plugin-cjs-interop demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.