forked from ioticos/demo-ioticos-gl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
45 lines (35 loc) · 828 Bytes
/
test.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
Mqtt test
<script src="https://unpkg.com/mqtt/dist/mqtt.min.js"></script>
<script>
const clientId = 'mqttjs_' + Math.random();
const host = 'ws://localhost:8083/mqtt';
const options = {
keepalive: 60,
clientId: clientId,
protocolId: 'MQTT',
protocolVersion: 4,
clean: true,
reconnectPeriod: 1000,
connectTimeout: 30 * 1000,
username:"superuser",
password: "superuser",
will: {
topic: 'WillMsg',
payload: 'Connection Closed abnormally..!',
qos: 0,
retain: false
},
}
console.log('Connecting mqtt client');
const client = mqtt.connect(host, options);
client.on('connect', () => {
console.log("SUCCESS!!!!")
});
client.on('error', (err) => {
console.log('Connection error: ', err)
client.end()
});
client.on('reconnect', () => {
console.log('Reconnecting...')
});
</script>