Files
psf-bch-api/production/docker/temp.js
T

9 lines
200 B
JavaScript

// Simple Node.js app that prints 'hello world' every 10 seconds
setInterval(() => {
console.log('hello world')
}, 10000)
console.log('Timer started. Printing "hello world" every 10 seconds...')