Socket
Book a DemoInstallSign in
Socket

@ucp-npm/mx-adapter

Package Overview
Dependencies
Maintainers
0
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ucp-npm/mx-adapter

MX Adapter for the Universal Connect Widget

latest
Source
npmnpm
Version
3.0.2
Version published
Maintainers
0
Created
Source

MX Adapter for the UCW

npm version

This is the adapter that makes it possible to connect with MX via the Universal Connect Widget.

Installation

This package is meant to be used with the Universal Connect Widget. If you have forked the UCW project, you can install it as a dependency of the widget.

Navigate to your forked project and, from the root of the project, run:

npm i @ucp-npm/mx-adapter --workspace apps/server

Usage

Once you have the npm package installed, you can set up the ucw to use it.

In the ./apps/server/adapterSetup.ts file, do the following:

Import getMxAdapterMapObject from the MX adapter package:

import { getMxAdapterMapObject } from "@ucp-npm/mx-adapter";

Import the logger and cache client (redis) dependencies:

import * as logger from "./infra/logger";
import { get, set } from "./services/storageClient/redis";

Next, look for the line that starts with export const adapterMap = {, and add the adapter map as follows:

const mxAdapterMapObject = getMxAdapterMapObject({
  cacheClient: {
    set: set,
    get: get,
  },
  logClient: logger,
  aggregatorCredentials: {
    mxInt: {
      username: config.MX_CLIENT_ID,
      password: config.MX_API_SECRET,
    },
    mxProd: {
      username: config.MX_CLIENT_ID_PROD,
      password: config.MX_API_SECRET_PROD,
    },
  },
  envConfig: {
    HOSTURL: config.HOST_URL,
  },
});

export const adapterMap = {
  ...mxAdapterMapObject,
  ...testAdapterMapObject,
};

The logClient and cacheClient dependencies are provided by the Universal Connect Widget.

Published NPM Package

https://www.npmjs.com/package/@ucp-npm/mx-adapter

More Info

See https://universalconnectproject.org/ for more information.

FAQs

Package last updated on 19 Mar 2025

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