Last active
June 18, 2017 05:36
-
-
Save pblca/dfd1fb44310a465570d4 to your computer and use it in GitHub Desktop.
Getting Started Tutorial for Using PubNub with JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Publish a simple message to the demo_tutorial channel | |
PUBNUB_demo.publish({ | |
channel: 'demo_tutorial', | |
message: {"color":"blue"} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Subscribe to the demo_tutorial channel | |
PUBNUB_demo.subscribe({ | |
channel: 'demo_tutorial', | |
message: function(m){console.log(m)} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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
commented
Sep 12, 2014
<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