mirror of
https://github.com/Permissionless-Software-Foundation/psf-bch-api-base.git
synced 2026-09-21 16:52:00 -07:00
8 lines
199 B
JavaScript
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...')
|