Last active
October 3, 2016 04:36
-
-
Save pnakibar/8b591cf6b02f7897722b2722250154c4 to your computer and use it in GitHub Desktop.
primeira página para o tutorial de websockets
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> | |
<head> | |
<meta charset="utf-8"> | |
<title>Websocket tutorial</title> | |
<script src="http://localhost:3000/socket.io/socket.io.js"></script> <!-- pegando a dependência do servidor --> | |
</head> | |
<body> | |
<p> | |
"Hello" | |
</p> | |
<script> | |
const socket = io('http://localhost:3000/'); // conectando no servidor do socketio | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment