Skip to content

Instantly share code, notes, and snippets.

@bkamber
Forked from pblca/instantiate.html
Created December 20, 2015 04:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkamber/e8353066eebbb9b629a9 to your computer and use it in GitHub Desktop.
Save bkamber/e8353066eebbb9b629a9 to your computer and use it in GitHub Desktop.
Getting Started Tutorial for Using PubNub with JavaScript
<!-- Include the PubNub Library -->
<script src="https://cdn.pubnub.com/pubnub.min.js"></script>
<!-- Instantiate PubNub -->
<script type="text/javascript">
var PUBNUB_demo = PUBNUB.init({
publish_key: 'Your Publish Key Here',
subscribe_key: 'Your Subscribe Key Here'
});
</script>
// Publish a simple message to the demo_tutorial channel
PUBNUB_demo.publish({
channel: 'demo_tutorial',
message: {"color":"blue"}
});
//Subscribe to the demo_tutorial channel
PUBNUB_demo.subscribe({
channel: 'demo_tutorial',
message: function(m){console.log(m)}
});
<html>
<head>
<title>Getting Started With PubNub</title>
</head>
<body>
<script src="https://cdn.pubnub.com/pubnub.min.js"></script>
<script charset="utf-8">
(function(){
var PUBNUB_demo = PUBNUB.init({
publish_key: 'demo',
subscribe_key: 'demo'
});
PUBNUB_demo.subscribe({
channel: 'demo_tutorial',
message: function(m){console.log(m)},
connect : publish
});
function publish() {
PUBNUB_demo.publish({
channel: 'demo_tutorial',
message: {"text":"Hey!"}
});
}
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment