Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

common-proxy

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

common-proxy

Utility methods to help manage and expose nx plugins

Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

common-proxy

Conveniently expose ESM-backed methods as a syncronously available (commonjs) async method.

npm package License

Contents

Introduction

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.

Usage

How it used t work:

// 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');
})();

How it works with common-proxy

// 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');

API

commonProxy

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).

Keywords

commonjs

FAQs

Package last updated on 23 Oct 2024

Did you know?

Socket

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.

Install

Related posts