Skip to content

Redirects ​

Dealing with redirects is pretty straightforward according to MDN.

Statuses to support ​

My main use-case is to redirect after a form post, therefore I will focus on 303: See Other.

303 – See Other

Method handling: GET methods unchanged. Others changed to GET (body lost).

Typical use case: Used to redirect after a PUT or a POST, so that refreshing the result page doesn't re-trigger the operation.

Adding a POST greet handler ​

tsx
// src/server-first/6-redirects/post-greet-handler.tsx

/** @jsxImportSource hono/jsx */
import { delay } from '@/utils/delay'
import { HandlerBuilder } from './handler-builder'
import { respondWith } from '../definition/response'

export const postGreetHandler = HandlerBuilder.post('/hello/:name').handleWith(
  async ({ params, ...input }) => {
    await delay(150) // mimic DB access.

    return respondWith.seeOther(`/hello/${params.name}`)
  },
)

Register the POST handler in our server ​

ts
// src/server-first/6-redirects/server.ts

import { greetHandler } from './greet-handler'
import { createH3NodeServer } from './h3-adapter'
import { getGreetHandler } from './get-greet-handler'
import { postGreetHandler } from './post-greet-handler'

async function createServer() {
  const port = 6600

  await createH3NodeServer({
    port,
    handlers: [greetHandler], 
    handlers: [getGreetHandler, postGreetHandler], 
  })
  console.info('Server listening on port', port)
}

createServer().catch(console.error)

End-to-End Testing ​

sh
npx tsx ./src/server-first/6-redirects/server.ts

Let’s test our redirect handler:

sh
$ curl -X POST http://localhost:6600/hello/Toto --verbose
* Host localhost:6600 was resolved.
* IPv6: ::1
* IPv4: 127.0.0.1
*   Trying [::1]:6600...
* Connected to localhost (::1) port 6600
> POST /hello/Toto HTTP/1.1
> Host: localhost:6600
> User-Agent: curl/8.7.1
> Accept: */*
>
* Request completely sent off
< HTTP/1.1 303 See Other               # <-- βœ…
< location: /hello/Toto                # <-- βœ…
< Date: Sat, 28 Dec 2024 05:13:51 GMT
< Connection: keep-alive
< Keep-Alive: timeout=5
< Content-Length: 0
<
* Connection #0 to host localhost left intact

All good βœ