UNPKG

@goa/goa

Version:

The Goa Source Code For Compilation Into @Goa/Koa That Includes Modules, Tests, Types And Dependencies.

12 lines (10 loc) 276 B
import Goa from '../../../src' const goa = new Goa() goa.use((ctx) => { /* start example */ ctx.response.redirect('back') ctx.response.redirect('back', '/index.html') ctx.response.redirect('/login') ctx.response.redirect('http://google.com') /* end example */ })