Publish and Subscribe for Node.JS
Install PubNub NPM Package.
npm install 
[email protected]
Example Publish Subscribe with Node.JS
var channel = "hello_world";
var pubnub = require("pubnub")({
    publish_key   : "your_pub_key"
,   subscribe_key : "your_sub_ke...