1 2 3 4 5 6 7 8 9
function ping() { fetch("/ping") .then(() => setTimeout(ping, 1000)) .catch((e) => { console.error(e); postMessage("error"); }) } setTimeout(ping, 1000);