Skip to main content
Module

x/task_runner/example/server.ts

Task runner for deno
Latest
File
const name = Math.floor(Math.random() * 1000);setInterval(() => { console.log(`${name} running...`);}, 600);