pm2/test/fixtures/inside/start_inside.js
2016-07-04 23:59:46 +02:00

11 lines
153 B
JavaScript

var PM2 = require('../../..');
var pm2 = new PM2.custom({
cwd : __dirname
});
PM2.start('./echo.js', function(err, app) {
if (err) throw err;
});