Skip to content

DreamworldSolutions/sysend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sysend

Installation

Using npm

npm install @dreamworld/sysend

or yarn

yarn add @dreamworld/sysend

Usage

import sysend from '@dreamworld/sysend';

//Listern for `custom-message` message
sysend.on('custom-message', function(message) {
  //Handle on `custom-message` message
});

//Broadcast message
sysend.broadcast('custom-message', { message: `Hello` });