
Research
/Security News
CanisterWorm: npm Publisher Compromise Deploys Backdoor Across 29+ Packages
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.
common-proxy
Advanced tools
Conveniently expose ESM-backed methods as a syncronously available (commonjs) async method.
ESM methods import asyncronously. If your codebase is all ESM, then that is easy to work with!
But sometimes you have to support CommonJS, either because you are developing a plugin or existing codebase hasn't been migrated to ESM yet.
common-proxy is a CommonJs package that can be provided with your ESM import and syncronously expose the main default export as a promise-returning method.
// my-module.mts
export const sayHello = (name: string): void => `hello ${name}`;
export default function add(x: number, y: number): number {
return x + y;
};
// my-old-script.cts
// Error! Cannot `require` an ESM package
import add from './my-module';
(async () => {
// Works... but requires, and isn't accessible elsewhere
const { sayHello } = await import('./my-module');
sayHello('Jacob');
})();
// my-module.cts
import { commonProxy } from 'common-proxy';
const imported = import('./my-module.mjs');
export default commonProxy(imported);
export const sayHello = imported.then(mod => mod.sayHello);
// my-new-script.cts
import add, { sayHello } from './my-module.cjs';
// Both return promises!
const sum: Promise<number> = add(1, 2);
sayHello('Jacob');
Takes a Promise of a function, and syncronously returns a function that has the same signature and returns a promise that eventually resolves with the real result from the true function.
If the parameter is actually a module with a default property (the way import(<package>) exposes a default export), the method from default import will be used. See default-import for more context.
Any other methods should be passed directly. This can be achieved with promise chaining import(<package>).then(mod => mod.methodName).
FAQs
Utility methods to help manage and expose nx plugins
We found that common-proxy demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Research
/Security News
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.

Research
/Security News
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.