Aditya Mathur
Aditya Mathur
Hey, here is an `hono` & `deno` starter template and I have used `hono-rate-limiter` like this - ```ts import { Hono } from "hono"; import { rateLimiter } from "hono-rate-limiter";...
Some Updates I have made which solve this issue 1. use `hono` from `npm` - if you use `npm:hono@^4.6.11` with `npm:hono-rate-limiter@^0.4.0`, this does solve this issue. Seems like the types...
You can refer to this comment in my other repo - https://github.com/rhinobase/hono-openapi/issues/20#issuecomment-2545183723
You can use https://www.npmjs.com/package/bcryptjs
Quite Interesting! Some thoughts I have regarding the API - 1. Isn't `afterNext` and `after` functions getting called one after the other, so to simplify can't we just have an...
I just checked again, and it turns out that my linter, `biome,` was giving me the error. Sorry for the false alarm. I'm just curious if we should remove the...
I will work on this today
I can create PR if no one else is working on this
It looks like the issue arises because the middleware is being defined at the global scope within your `app`. When you define middleware this way, it will be applied to...
You can also wrote it like this to achieve what you want ```ts // author.ts import { Hono } from 'hono' import { authMiddleware } from '@/middlewares/auth'; const app =...