Guest User

Simple http server

a guest
Feb 21st, 2021
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const Koa = require('koa');
  2. const http = require('http');
  3.  
  4. const app = new Koa();
  5.  
  6. app.use((ctx) => {
  7.     ctx.body = 'Hello World!';
  8. });
  9.  
  10. const server = http.createServer(app.callback());
  11. server.listen(3000);
  12.  
Advertisement
Add Comment
Please, Sign In to add comment