Skip to content

Instantly share code, notes, and snippets.

<html>
<head>
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://localhost');
socket.on('news', function (data) {
document.write(data.hello);
socket.emit('my other event', { my: 'data' });