Skip to content

Instantly share code, notes, and snippets.

@MBehtemam
Last active August 29, 2015 13:56
Show Gist options
  • Save MBehtemam/9203587 to your computer and use it in GitHub Desktop.
Save MBehtemam/9203587 to your computer and use it in GitHub Desktop.
Koa Application 1
var koa = require('koa'),
route = require('koa-route'),
app = koa();
app.use(route.get('/',function *(){
this.body = "HELLO WORLD";
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment