-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathweb.html
64 lines (48 loc) · 1.83 KB
/
web.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Rltm.js Tester</title>
</head>
<body>
<script src="./web/rltm.js"></script>
<script type="text/javascript">
const connections = {
pubnub: new Rltm('pubnub', {
publishKey: 'demo',
subscribeKey: 'demo',
uuid: new Date().getTime()
}),
socketio: new Rltm('socketio', {
// must run socketio-server.js
endpoint: 'http://localhost:9000',
uuid: new Date().getTime()
})
};
const connection = connections['pubnub'];
console.log(connection)
room = connection.join(new Date().getTime());
let i = 1;
setInterval(function(){
room.publish({
i: i,
sentTime: new Date().getTime()
});
i++;
}, 1000);
room.on('message', function(uuid, message){
let latency = new Date().getTime() - message.sentTime;
document.body.innerHTML =
document.body.innerHTML + message.i + ' Latency: '
+ latency + 'ms <br/>';
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-16927549-21', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>