mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
|
|
var pm2 = require('..');
|
|
|
|
pm2.connect(function() {
|
|
setInterval(function() {
|
|
pm2.restart('echo', function() {
|
|
console.log(arguments);
|
|
});
|
|
}, 2000);
|
|
});
|