UNPKG
dmx
Version:
latest (0.25.1)
0.25.1
0.25.0
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.1
0.1.0
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A nodejs DMX library
github.com/node-dmx/dmx
node-dmx/dmx
dmx
/
demo_socket_client.js
6 lines
(4 loc)
•
165 B
JavaScript
View Raw
1
2
3
4
5
6
const
port =
17809
;
const
io =
require
(
'socket.io-client'
);
const
client = io.
connect
(
`http://localhost:
${port}
`
); client.
on
(
'update'
,
(
msg
) =>
console
.
info
(msg));