mirror of
https://github.com/Unitech/pm2.git
synced 2026-02-01 16:57:09 +00:00
15 lines
185 B
JavaScript
15 lines
185 B
JavaScript
|
|
|
|
|
|
var pm2 = require('..');
|
|
|
|
setTimeout(function() {
|
|
pm2.connect(function() {
|
|
pm2.restart('all', function() {
|
|
pm2.disconnect(function() {
|
|
|
|
});
|
|
});
|
|
});
|
|
}, 3000);
|