1.4.0 • Published 5 years ago

@first-lego-league/ms-messenger v1.4.0

Weekly downloads
1
License
GPL-3.0
Repository
github
Last release
5 years ago

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

optionmeaningoptionsdefault
mhubURIThe URI of the MHub serverAny valid WebSockets URIprocess.env.MHUB_URI
nodeThe node to which the messenger is connectedString'default'
clientIdAn ID for the clientStringRandom base64 string
reconnectTimeoutTime between connection attemptsAny number10 seconds
credentialsAn object of the pattern { username, password } to be used to login to the node. If none is specified, no login will be performedObject with fields username and passwordundefined

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!

1.4.0

5 years ago

1.2.7

5 years ago

1.2.6

5 years ago

1.3.0

5 years ago

1.2.5

5 years ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.0.5

6 years ago

1.1.0

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago