Yusuke Wada
Yusuke Wada
Write a document on how to handle Environment variables for Cloudflare Workers. Like this: ```ts app.post('/posts', async (c, next) => { const auth = basicAuth({ username: c.env.NAME, password: c.env.PASS })...
In most cases, there is no favicon.ico in our directory and it will be 404 not found. How about preparing the default favicon.ico and showing it as `/favicon.ico`. 
I really want `--live-reload` option for `wrangler dev`. I know `wrangler pages dev` already have `--live-reload` option by PR #220 . Not only using *Pages*, I often build HTML pages...
Implement a live reloading option. When the markdown file is changed, slides are reload automatically. PR: #3 by @vjeantet made an offer to implement this function. I have been rejected...
From v2.0.0, we can create 3rd party middleware. So far, the following 3rd-party middleware has been created. * GraphQL Middleware * Firebase Auth Middleware * Validator Middleware * Sentry Middleware...
### What version of Hono are you using? 4.0.1 ### What runtime/platform is your app running on? Cloudflare Workers ### What steps can reproduce the bug? ```ts import { Hono...
### What is the feature you are proposing? A new package repository: https://jsr.io/ I've already got the namespace:
I realized that we don't have to write `await` for `next()` in middleware. This means if it does not have async functions in middleware, you can write like the following:...