Get your own Node server
//Write "Hello" every 500 milliseconds:
let myInt = setInterval(function () {
    console.log("Hello");
}, 500);