mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 19:44:26 +01:00
1b2a4c0800
* feat(jsr): reduce slow types (#2369) * feat(jsr): reduce slow types * fix: use allow function * chore: format code * chore: denoify * add `deno.json` * add `jsr-dry-run` command for CI * don't put `JSX` on `global` * fix test settings for deno * don't use `dynamicClass` * don't declare `ExecutionContext` in `global` * goodbye denoify * exports `./middleware` * exports `./helper` * exports each helper and middleware * remove the `awslambda` implementation which is not enough * feat(jsr): remove helper.ts and middleware.ts (#2667) * feat(jsr): remove helper.ts and middleware.ts * fix: fix test * dont' use `SuperClass` Co-authored-by: Taku Amano <taku@taaas.jp> * feat(jsr): delete `mod.ts` (#2669) * rename `deno.json` to `jsr.json` * lint * remove slow type in lambda adapter * fixed runtime test for deno * export all utils * add a GitHub action to publish the package to JSR * fixed declaring `ContextVariableMap` * fixed the type error * include `jsr.json` in `jsr.json` * update `jsr.json` --------- Co-authored-by: Shotaro Nakamura <79000684+nakasyou@users.noreply.github.com> Co-authored-by: Taku Amano <taku@taaas.jp>
63 lines
2.0 KiB
Markdown
63 lines
2.0 KiB
Markdown
# Contribution Guide
|
|
|
|
Contributions Welcome! We will be glad for your help.
|
|
You can contribute in the following ways.
|
|
|
|
- Create an Issue - Propose a new feature. Report a bug.
|
|
- Pull Request - Fix a bug and typo. Refactor the code.
|
|
- Create third-party middleware - Instruct below.
|
|
- Share - Share your thoughts on the Blog, Twitter, and others.
|
|
- Make your application - Please try to use Hono.
|
|
|
|
Note:
|
|
This project is started by Yusuke Wada ([@yusukebe](https://github.com/yusukebe)) for the hobby proposal.
|
|
It was just for fun. For now, this stance has not been changed basically.
|
|
I want to write the code as I like.
|
|
So, if you propose great ideas, but I do not appropriate them, the idea may not be accepted.
|
|
|
|
Although, don't worry!
|
|
Hono is tested well, polished by the contributors, and used by many developers. And I'll try my best to make Hono cool, beautiful, and ultrafast.
|
|
|
|
## Installing dependencies
|
|
|
|
The `honojs/hono` project uses [Bun](https://bun.sh/) as its package manager. Developers should install Bun.
|
|
|
|
After that, please install the dependency environment.
|
|
|
|
```txt
|
|
bun install
|
|
```
|
|
|
|
If you can't do that, there is also a `yarn.lock` file, so you can do the same with the `yarn` command.
|
|
|
|
```txt
|
|
yarn install --frozen-lockfile
|
|
```
|
|
|
|
## PRs
|
|
|
|
Please ensure your PR passes tests with `bun run test` or `yarn test`.
|
|
|
|
## Third-party middleware
|
|
|
|
Third-party middleware is not in the core.
|
|
It is allowed to depend on other libraries or work only in specific environments, such as only Cloudflare Workers. For examples:
|
|
|
|
- GraphQL Server middleware
|
|
- Firebase Auth middleware
|
|
- Sentry middleware
|
|
|
|
You can make a third-party middleware by yourself.
|
|
It may be under the "honojs organization" and distributed in the `@honojs` namespace.
|
|
|
|
The monorepo "[honojs/middleware](https://github.com/honojs/middleware)" manages these middleware.
|
|
If you want to do it, create the issue about your middleware.
|
|
|
|
## Local Development
|
|
|
|
```
|
|
git clone git@github.com:honojs/hono.git && cd hono/.devcontainer && yarn install --frozen-lockfile
|
|
docker compose up -d --build
|
|
docker compose exec hono bash
|
|
```
|