UNPKG

fastify

Version:

Fast and low overhead web framework, for Node.js

11 lines (7 loc) 150 B
'use string' var koa = require('koa') var app = koa() app.use(function * () { this.body = JSON.stringify({ hello: 'world' }) }) app.listen(3000)