website
website copied to clipboard
Repository for hono.dev
There are some things that cannot be understood just by reading the documentation. Source code is useful in such cases. Life with UNIX has the following chapters: > 4.2 Sources...
make a prisma installation doc
Testing: https://hono.dev/guides/testing We have to replace "jest" with "vitest" since [Cloudflare recommends using "vitest" with `@cloudflare/vitest-pool-workers`](https://developers.cloudflare.com/workers/testing/vitest-integration/get-started/write-your-first-test/).
Simple to use! ```ts import { Hono } from 'hono' const app = new Hono() app.all('*', async (c) => { const api = new URL('https://www.example.com') const url = new URL(c.req.url)...
need add "export default app" to run else showing error.
The routes declared in separate files cannot be imperative for RPC inference, so I added that point under best practice while using RPC. I had this issue and it took...