jccp_a/vuepress/node_modules/union/examples/socketio/index.html
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00

8 lines
231 B
HTML

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