
Research
/Security News
Fake imToken Chrome Extension Steals Seed Phrases via Phishing Redirects
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.
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
The npm package common-proxy receives a total of 16 weekly downloads. As such, common-proxy popularity was classified as not popular.
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
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.

Security News
Latio’s 2026 report recognizes Socket as a Supply Chain Innovator and highlights our work in 0-day malware detection, SCA, and auto-patching.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.