Skip to content

Instantly share code, notes, and snippets.

@skyzh
Created August 10, 2018 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skyzh/d0ed6b8408526967788c1f8ff4b94ed4 to your computer and use it in GitHub Desktop.
Save skyzh/d0ed6b8408526967788c1f8ff4b94ed4 to your computer and use it in GitHub Desktop.
create a server which returns {} on every page
const Koa = require('koa')
const app = new Koa()
app.use(ctx => {
ctx.response.body = {}
})
app.listen(8000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment