egg/examples/start.js
fengmk2 2adf02d33d chore: add benchmarks (#62)
- simple helloworld
- simple nunjucks view
2016-08-29 18:23:28 +08:00

12 lines
200 B
JavaScript

'use strict';
const path = require('path');
const egg = require('..');
const name = process.argv[2];
console.log('Starting %s', name);
egg.startCluster({
baseDir: path.join(__dirname, name),
});