mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
|
|
|
|
var pm2 = require('..');
|
|
|
|
pm2.connect(function() {
|
|
pm2.start(__dirname + '/args.js', {
|
|
scriptArgs : ['-i', 'sisi', '-x', 'toto']
|
|
}, function(err, res) {
|
|
console.log(arguments);
|
|
});
|
|
});
|