sumorobot-web/test.html

20 lines
252 B
HTML
Raw Normal View History

2018-11-25 06:12:33 +00:00
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>
var exampleSocket = new WebSocket("ws://192.168.1.1:80/p2p/sumo-277344/browser/");
exampleSocket.onmessage = function (event) {
console.log("data");
}
</script>
</body>
</html>