Skip to content

Remix

Remix は Web 標準に基づいたフルスタックフレームワークです。

Remix と Hono は fetch API を通じて一緒に使えるようになりました。

Remix + Hono

Remix を Hono のミドルウェアとして使うためには Remix + Hono 、 このようにします:

ts
import * as build from '@remix-run/dev/server-build'
import { remix } from 'remix-hono/handler'

app.use('*', remix({ build, mode: process.env.NODE_ENV }))

See also

Released under the MIT License.