コンテンツにスキップ

Remix

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

現在、Remix と Hono は fetch API を介して一緒に使用できます。

Remix + Hono

Remix + Hono を使用して、次のように Hono ミドルウェアとして Remix を使用できます。

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 }))

もご覧ください。

MIT ライセンスに基づいてリリースされました。