Skip to content

xpush/node-xpush-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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/

About

xpush client for node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published