
Security News
npm Introduces minimumReleaseAge and Bulk OIDC Configuration
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.
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.

Security News
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.

Research
/Security News
Socket uncovered four malicious NuGet packages targeting ASP.NET apps, using a typosquatted dropper and localhost proxy to steal Identity data and backdoor apps.