Skip to content

Instantly share code, notes, and snippets.

@PlasmaPower
Created October 23, 2016 14:56
Show Gist options
  • Save PlasmaPower/c4b9acc801a7afdbef746d8881c3f70b to your computer and use it in GitHub Desktop.
Save PlasmaPower/c4b9acc801a7afdbef746d8881c3f70b to your computer and use it in GitHub Desktop.
let app = require('koa')();
let mount = require('koa-mount');
app.use(mount('/signin', function*(next) { this.response.redirect('/example') }));
app.listen(8080);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment