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

@first-lego-league/ms-messenger

v1.4.0

Published

Module Standard matching Mhub Client

Downloads

26

Readme

npm codecov Build status GitHub

David Dependency Status David Dev Dependency Status David Peer Dependencies Status

FIRST LEGO Leage messenger

A MHub client working by the FIRST LEGO League TMS Module Standard.

The logic of this module

This module was meant to serve as an extendable messenger which already works by the Module Standard and allows you to easily listen to and send messages. It gives you all the functionality needed for a Mhub messenger running in node or in browser.

In node

The messenger givven in node is fully correlated and logged using ms-logger. It also has a client-id which recognizes it against other clients, and is sent in the headers for recognition.

In browser

In broswer many of these feature are not required or needed. So the client only has a client-id, and isn't correlated or logged.

Authentication

All messengers have the ability to be authenticated using MHub credentials.

Ignoring

All messengers have the ignoreNextMessageOfTopic method, which tells them to ignore the next message of a givven topic.

Stay Alive

All messengers have a failsafe mechanism that makes sure they restart when they get disconnected.

Usage

const { createMessenger } = require('@first-lego-league/ms-messenger')

// Create a new object
const messenger = createMessenger({/* options... */})

messenger.listen('some:topic', (messageData, message) => {
  // do something
})

messenger.send('some:topic', { data: {/* data... */} })

Options

| option | meaning | options | default | |--|--|--| | mhubURI | The URI of the MHub server | Any valid WebSockets URI | process.env.MHUB_URI | | node | The node to which the messenger is connected | String | 'default' | | clientId | An ID for the client | String | Random base64 string | | reconnectTimeout | Time between connection attempts | Any number | 10 seconds | | credentials | An object of the pattern { username, password } to be used to login to the node. If none is specified, no login will be performed | Object with fields username and password | undefined |

Contribution

To contribute to this repository, simply create a PR and set one of the Code Owners to be a reviewer. Please notice the linting and UT, because they block merge. Keep the package lightweight and easy to use. Thank you for contributing!