pm2/examples/echo.js
2014-08-11 16:03:09 +02:00

12 lines
196 B
JavaScript
Executable File

setInterval(function() {
console.log('log message from echo.js');
}, 1500);
setTimeout(function() {
setInterval(function() {
console.error('err msg from echo.js');
}, 1500);
}, 750);