npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@axway/api-builder-plugin-dc-mbs

v1.1.1

Published

Mobile Backend Services connector

Readme

MBS Connector Plugin

The Mobile Backend Services (MBS) data connector is a plugin for API Builder that allows you to connect to Axway MBS. All the Models created in your project that uses the MBS data connector, will have their data automatically persisted in the cloud.

Installation

To install the MBS connector, execute the following command:

npm install --no-optional @axway/api-builder-plugin-dc-mbs

A configuration file is generated for you and placed into the /conf directory of your API Builder project.

Configuration

Once the plugin is installed, the configuration file is located in <project>/conf/mbs.default.js .

| Option name | Type | Description | Required | | ----------- | ---- | ----------- |---------- | connector | string | Must be set to @axway/api-builder-plugin-dc-mbs| Yes | | username | string | The user with which to connect to MBS. | Yes | | password | string | The user's password with which to connect to MBS. | Yes | | key | string | The MBS instance App Key | Yes | | baseurl | string | Location where MBS is hosted. Defaults to Amplify Platform Production | No | | pingInterval | number | The time in ms to ping MBS to keep the current session alive. Defaults to once a day. Set to -1 to disable. | No |

Provisioning a MBS database in the AMPLIFY Platform

  1. Follow this guide to provision an MBS database and get a username, password and app key.
  2. From within an API Builder 4.x project, install the connector:
$ npm install --no-optional @axway/api-builder-plugin-dc-mbs

After the successful installation of the connector, a configuration file 'mbs.default.js' will be automatically created in your project's conf directory.

We recommend providing the app key, username, and password as environment variables. MBS_KEY, MBS_USER and MBS_PASSWORD are the default environment variables used to configure this connector. See Environmentalization for more info.

After configuring the connector, you can start the service as normal.

Changes

1.1.0

  • #6933: Replace peerDependency on @axway/api-builder-runtime with engines.apibuilder.

1.0.9

  • #7343: Fix timing issue in unit tests.

1.0.8

  • #7057: Updated documentation links.

1.0.7

  • #7008: Fixed the issue where the plugin configuration file is not installed correctly if the project conf directory does not exist.

1.0.6

  • #6934: Internal refactoring around code style.

1.0.5

1.0.4

  • #6315: Internal chore.

1.0.3

  • #6116: Internal cleanup chore.

1.0.2

  • #6114: Refactor code for style, security and performance improvements.

1.0.1

  • #6115: Internal fix for Sonar scans.

1.0.0

  • #6107: Initial supported release.

0.1.2

  • #6074: Internal CI chore.

0.1.1

  • #6023: Add the ability to provide baseurl in configuration to specify an alternative MBS host.

0.1.0

  • #5939: New connector implementation.

0.0.1 - 0.0.3

  • No notable changes.

0.0.0

  • #5776: Initial migration (unsupported).