hono
hono copied to clipboard
Web framework built on Web Standards
I've already got twitter account `@honojs`. This account will be helpful in promoting Hono.
Here is my jest config: ``` import dotenv from 'dotenv' dotenv.config({ path: '.env.test' }) export default { testEnvironment: 'miniflare', moduleFileExtensions: ['js', 'jsx', 'mjs'], coverageThreshold: { global: { branches: 70, functions:...
I have an idea, "*Validator Middleware*". I plan that I'll make it with [validator.js](https://github.com/validatorjs/validator.js), which is used in [express-validator](https://express-validator.github.io/docs/). So, it will depend on the external library, which will be...
We can make "Sentry Middleware" using "Toucan". It will be as a third-party middleware. If we decide to make it, the repository and package name will be: ``` github.com/honojs/sentry @honojs/sentry...
Both [Hono](https://honojs.dev/) and [HatTip](https://github.com/hattipjs/hattip) enable third-party libraries (auth libraries, GraphQL libraries, ...) to provide server middlewares for automatic integration: for example, a GraphQL library providing a Hono middleware enables the...
First of: congrats for developing such a lovely project! It's exciting to see server-side JavaScript evolving. I'm curious about how you see the future of Hono. I think there is...
We have to write about third-party middleware on `honojs.dev`.
I have used the url in Postman is http://localhost:3000/user/1 on my local bun server. In case id 1 already exists in database. My Code: app.delete("/user/:id", async (c)=> { const id...
[Drivly](https://github.com/drivly) would like to sponsor Hono. @yusukebe would you be open to that? We offer simple unified APIs to buy and sell cars online, and we're funded by some of...
How about building [Apollo Server](https://www.apollographql.com/docs/apollo-server/) Middleware as third-party middleware? GraphQL middleware is available, but Apollo Sever middleware would be nice to have. Repository and npm repository name will be: *...