本稿ではTypeScriptでKoaのリダイレクトをする方法を説明する。 Koaでのリダイレクトのしかた ハンドラーに渡ってくるctxオブジェクトにredirect()メソッドが生えているので、それを叩くだけ。 import Koa from "koa"; import _ from "koa-route"; const app = new Koa() app.use(_.get('/old', async ctx => { ctx.redirect('/new') })) app.use(_.get('/new', async ctx => { ctx.body = 'redirected!' })) app.listen(4000)