const Koa = require('../application') const app = new Koa() app.use((req, res) => { res.end('hello koa')}) app.listen(3000, '127.0.0.1', () => { console.log('listening on the 3000')})