0.0.5 • Published 10 years ago

xpush-client v0.0.5

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

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/

0.0.5

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago