Skip to content

Instantly share code, notes, and snippets.

@pblca
Last active June 18, 2017 05:36
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save pblca/dfd1fb44310a465570d4 to your computer and use it in GitHub Desktop.
Save pblca/dfd1fb44310a465570d4 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>
@moonsirenz
Copy link

<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>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment