mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +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);
|