Remix + Hono
Remix is a Web Standard based full stack framework.
Now, Remix and Hono can be used together through the fetch API.
Snippets
You can use Remix as Hono middleware using Remix Hono, like this:
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 }))