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

monipy

v0.7.1

Published

PIOPIY monitor call javascript browser sdk

Readme

MONIPY Client JS SDK for Voice

MONIPY Supervisor JS SDK allows you to barge into an ongoing call.

Get Started

Installation

You can install MONIPY using npm:

npm i monipy

Initializing the MONIPY SDK Object

The MONIPY SDK object needs to be initialized.

var monipy = new MONIPY( {
        name: 'Kiara',
        debug: false,
        autoplay: true,
        autoReboot: false,
        ringTime: 60
    } );

Configuration Parameters

Below are the configuration parameters:

| Attribute | Description | Allowed Values | Default Value | | --- | --- | --- | --- | | name | Your Display Name in App | string | null | | debug | Enable debug message in JS log | true, false | false | | autoplay | Enable speaker access to your device | true, false | true | | autoReboot | Auto restart in case of failure | true, false | false | | ringTime | Your incoming call ringing time in seconds | number | 60 |

Login

Validate your login ID and password.

monipy.login('YOUR_LOGIN_ID','YOUR_PASSWORD');

Event Listeners

monipy.on( 'login', function ( object ) {
    console.log( object );
} );

monipy.on( 'logout', function ( object ) {
    console.log( object );
} );

monipy.on( 'loginFailed', function ( object ) {
    console.log( object );
} );

monipy.on( 'error', function ( object ) {
    console.log( object );
} );

monipy.on( 'ended', function ( object ) {
    console.log( object );
} );

monipy.on( 'rejected', function ( object ) {
    console.log( object );
} );

monipy.on( 'answered', function ( object ) {
    console.log( object );
} );

monipy.on( 'hangup', function ( object ) {
    console.log( object );
} );

monipy.on( 'mediaFailed', function ( object ) {
    console.log( object );
} );

monipy.on( 'inComingCall', function ( object ) {
    console.log( object );
    monipy.answer();
} );

monipy.on( 'ringing', ( e ) => {
    console.log( e );
} );

monipy.on( 'dtmf', ( e ) => {
    console.log( e );
} );

monipy.on( 'hold', ( e ) => {
    console.log( e );
} );

monipy.on( 'unhold', ( e ) => {
    console.log( e );
} );

monipy.on( 'missed', ( e ) => {
    console.log( e );
} );

monipy.on( 'trying', ( e ) => {
    console.log( e );
} );

monipy.on( 'callStream', ( e ) => {
    console.log( e );
} );

HTTP status codes

MONIPY platform represents the following status codes to identify errors.

| Status code | Description | | --- | --- | | 200 | You have logged in successfully | | 401 | Your Login ID or Password is invalid, authentication failed | | 1001 | You have already logged in |

Answer Call

Answer an incoming call.

monipy.answer();

HTTP status codes

| Status code | Description | | --- | --- | | 183 | Your incoming call status, status: ringing | | 200 | Your incoming call status, status: answered, canceled, call ended | | 1002 | You are already in a call |

Reject Call

Reject an incoming call.

monipy.reject();

HTTP status codes

| Status code | Description | | --- | --- | | 200 | Your incoming call status, status: hangup | | 1002 | Currently, there are no ongoing calls |

Terminate Call

Hang up the ongoing call.

monipy.terminate();

HTTP status codes

| Status code | Description | | --- | --- | | 200 | Your ongoing call status, status: hangup | | 1002 | Currently, there are no ongoing calls |

Logout

Logout from the MONIPY SDK.

monipy.logout();

HTTP status codes

| Status code | Description | | --- | --- | | 200 | You have logged out successfully | | 1002 | To log out, you need to log in first |