Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const Koa = require('koa');
- const http = require('http');
- const app = new Koa();
- app.use((ctx) => {
- ctx.body = 'Hello World!';
- });
- const server = http.createServer(app.callback());
- server.listen(3000);
Advertisement
Add Comment
Please, Sign In to add comment