Created
December 8, 2015 14:58
-
-
Save chanakaDe/f12d181ad658c6f86aaa to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<h1>Socket Demo</h1> | |
<script src="https://cdn.socket.io/socket.io-1.3.7.js"></script> | |
<script> | |
var socket = io.connect('http://localhost:8080'); | |
socket.on('light1', function (data) { | |
console.log("Printing Light status : ", data); | |
socket.emit('my other event', {my: 'data'}); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment