koa2-boilerplate-plus
Version:
Enhanced koa2 boilerplate
21 lines (15 loc) • 446 B
JavaScript
;
import Koa from 'koa';
import baseconfig from './config/base';
import middleware from './middleware';
import routes from './routes';
import config from './config/config';
const app = new Koa();
//configure basic app
baseconfig(app)
//configure custom middleware
app.use(middleware())
//configure custom routes
app.use(routes())
app.listen(config.app.port);
console.log("Server started, listening on port: " + config.app.port);