Yusuke Wada
Yusuke Wada
Resolves #90 With the `Script` component in this PR, you can import CSS for both development and production easily: ```ts // app/client.ts import { createClient } from 'honox/client' import './style.css'...
This is like a note for the development of HonoX. It will be edited. * **Versioning**: Since it is currently in the "alpha" phase, semantic versioning will not be followed....
It would be good to use GitHub "Discussions" to post announcements, Q&A on usage, etc. Let's try it later.
The following a "proxy pattern" is not working: ```ts import { serve } from '@hono/node-server' import { Hono } from 'hono' const app = new Hono() app.get('/proxy', async (c) =>...
Indeed, the Hono app, when using node-server, is slow. You can see the benchmarks here: https://github.com/SaltyAom/bun-http-framework-benchmark However, there are opportunities to improve performance, and we should do them.