xpush-client

0.0.5 • Public • Published

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/

Package Sidebar

Install

npm i xpush-client

Weekly Downloads

5

Version

0.0.5

License

MIT

Last publish

Collaborators

  • 0nlyoung7