Dan Ristic - Developer Evangelist

Connecting Everyone on Earth in Less Than ¼ Second
The core building-blocks needed to build and scale real-time apps dramatically reducing the cost, complexity, and time to deliver large-scale real-time experiences.
Presence - Instant Notifications of User’s Online/Offline Status
Analytics - See Your Users in Real-Time
Storage & Playback - Data Streams With Retrieval and Playback
Security - Encryption From End to End
// Listen for events
PUBNUB.subscribe({
channel: "my_channel",
message: function (message) {
console.log(message);
}
});
// Send Events
PUBNUB.publish({
channel: "my_channel",
message: "Hello World!"
});