New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ringcentral-integration/micro-coworker

Package Overview
Dependencies
Maintainers
4
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ringcentral-integration/micro-coworker

Coworker micro-frontend module for RingCentral Integration next-generation architecture.

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
4
Created
Source

RingCentral Coworker

Introduction

RingCentral Coworker is used to solve the following three issue:

  • Concurrent requests limit
  • Contact searching performance
  • Contact matching performance

The API createAppWithCoworker has built-in AddressBook, CompanyContacts,ContactMatcher and ContactSearch related modules.

Usage

yarn add @ringcentral-integration/micro-coworker

In main process:

import { createAppWithCoworker } from '@ringcentral-integration/micro-coworker/src/bootstrap';

createAppWithCoworker({
    // ...app options
    share: {
        name: 'app-demo',
        type: 'Base',
        coworker: {
            isCoworker: false,
            worker,
        },
    },
});

In coworker process:

import { createAppWithCoworker } from '@ringcentral-integration/micro-coworker/src/bootstrap';

createAppWithCoworker({
    // ...app options
    share: {
        name: 'app-demo',
        type: 'Base',
        coworker: {
            isCoworker: true,
        },
    },
});

Coworker Options

ProxyFetcherOptions

You can add new proxy fetcher modules by enabledProxyModules.

{
    provide: 'ProxyFetcherOptions',
    useFactory: (clientInfo) => {
        return {
            enabledProxyModules: [clientInfo],
        } satisfies ProxyFetcherOptions;
    },
    deps: [ClientInfo],
},

ProxyExecutorOptions

You can add new proxy executor modules by enabledProxyModules.

    {
        provide: 'ProxyExecutorOptions',
        useValue: {
            enabledProxyModules: [NumberValidate],
        } satisfies ProxyExecutorOptions,
    },

FAQs

Package last updated on 11 Mar 2026

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