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

8 lines
199 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...')