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 🙏

© 2024 – Pkg Stats / Ryan Hefner

rtcomm

v1.0.1

Published

IBM Rtcomm Node.js Library

Downloads

45

Readme

#lib.rtcomm.node

This repository contains the 'rtcomm' node.js Module. This module extends the real-time communications services of the WebSphere Liberty profile. Currently, the service extensions represented in this library include :

  1. RtcConnector: Provides the ability to monitor all events related to the rtcomm protocol including session and presence events.
  2. 3PCC (Third party call control): Providers the ability to initiate a 3rd party calls.

This module relies on both a message broker for sending (publishing) and receiving messages and the WebSphere Liberty rtcomm-1.0 feature to deliver these services. This node.js module is simply a client to these services. It can subscribe and receive RtcConnector related events and it can initiate a 3rd party call between two endpoints that are both registered with the WebSphere Liberty server.

##Install

npm install rtcomm

Note: specific releases of this repository can be installed via the following command:
npm install rtcomm@<version>

See the wiki page for what versions have been tested with specific versions of the 
WebSphere Liberty profile.

This module relies on the following:

  1. An MQTT broker for publishing and receiving messages.
  2. An Rtcomm server that supports Rtcomm 3rd party calling and/or event monitoring.

MQTT Broker examples:

There are many MQTT brokers on the market, both publicaly accessible and

Because Liberty does not currently include native support for an MQTT message broker, this feature requires an external broker. Many options of MQTT message brokers exist in the market today. Here is a list of some of the more commonly used MQTT message brokers:

IBM MessageSight
WebSphere MQ Telemetry
Mosquitto (open source MQTT broker)

A quick options for demonstrations and testing this module is tcp://broker.mqttdashboard.com:1883. The MQTT Dashboard is an open, publicly accessible MQTT broker.

Rtcomm server example:

The WebSphere Liberty profile beta extended package which can be downloaded from: https://developer.ibm.com/wasdev/downloads/liberty-profile-beta/

##Documentation

There are three parts to the documentation of this module:

  1. The Rtcomm services protocol that is implemented by this module: rtcomm.service.proto.spec.md
  2. The API specification for this module: rtcomm.service.api.spec.md
  3. The Presence events are defined on: rtcomm.signaling.proto.md

##Testing

This module relies on Mocha for testing and utilizes the Mosca MQTT broker. Instructions for running the test:

  1. From the root rtcomm-node director type: npm install
  2. Run mocha: ./node_modules/.bin/mocha