xpush-client

Realtime communication channel server and node module.

Usage no npm install needed!

<script type="module">
  import xpushClient from 'https://cdn.skypack.dev/xpush-client';
</script>

README

node-xpush-client

xpush client for node.js

This is almost the same with xpush javascript library in lib-xpush-web

About XPUSH

http://xpush.github.io/about/

Installation

$ npm install xpush-client

Usage Examples

var XPush = require( 'xpush-client' );

var xpush = new XPush('http://demo.stalk.io:8000', 'demo' );

xpush.createSimpleChannel('channel01', function(){

  // `message` event listener
  xpush.on( 'message', function(channel, name, data){
    console.log( data ); // This will display message, Hello world
  });

  /**
   *@param {string} channel - Channel Id
   * @param {string} name - event name `message`
   * @param {string} mag - message to send
   */  
  xpush.send( 'channel01', 'message', 'Hello world' );
});

Documentation

http://xpush.github.io/doc/library/javascript/