23 lines
611 B
HTML
23 lines
611 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<script src="./wsjs.js"></script>
|
|
<script>
|
|
let ws = new WSJS();
|
|
ws.connect('ws://localhost:8282');
|
|
ws.scope(()=>{
|
|
console.log("Connected ws")
|
|
ws.authWith("admin","123456Kc");
|
|
});
|
|
ws.signal('id',(data)=>{
|
|
console.log("Your id is ", data.value)
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |