You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
324 B

const io = require('socket.io-client')
const socket = io()
socket.on('connect', () => {
socket.on('count', (data) => {
// adding count and time from server
document.getElementById('count').innerHTML = data.count
document.getElementById('now').innerHTML = 'last update on ' + data.now;
})
})