JSPM

pubnub

3.6.7
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 246794
  • Score
    100M100P100Q193525F
  • License MIT

Publish & Subscribe Real-time Messaging with PubNub

Package Exports

  • pubnub

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pubnub) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

PubNub Node.JS SDK and NPM

Full documentation availabe - https://github.com/pubnub/javascript/blob/master/README.md

PubNub Node.js Quick Usage

Open ./tests/unit-test.js to see examples for all the basics, plus history(), presence() and here_now()! Report an issue, or email us at support if there are any additional questions or comments.

NPM Install

npm install pubnub

Example Usage

var pubnub = require("pubnub").init({
    publish_key   : "demo",
    subscribe_key : "demo"
});

/* ---------------------------------------------------------------------------
Publish Messages
--------------------------------------------------------------------------- */
var message = { "some" : "data" };
pubnub.publish({ 
    channel   : 'my_channel',
    message   : message,
    callback  : function(e) { console.log( "SUCCESS!", e ); },
    error     : function(e) { console.log( "FAILED! RETRY PUBLISH!", e ); }
});

/* ---------------------------------------------------------------------------
Listen for Messages
--------------------------------------------------------------------------- */
pubnub.subscribe({
    channel  : "my_channel",
    callback : function(message) {
        console.log( " > ", message );
    }
});

/* ---------------------------------------------------------------------------
Type Console Message
--------------------------------------------------------------------------- */
var stdin = process.openStdin();
stdin.on( 'data', function(chunk) {
    pubnub.publish({
        channel : "my_channel",
        message : ''+chunk
    });
});