You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-6
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Hono has three types of middleware.
14
14
Third-party middleware is maintained in this `github.com/honojs/middleware` repository and published to npm in the `@hono` namespace. For example, a third-party middleware called hello is hosted at `github.com/honojs/middleware/packages/hello` and distributed under the name `@hono/hello`.
15
15
You can install it with the following command.
16
16
17
-
```
17
+
```plain
18
18
npm install @hono/hello
19
19
```
20
20
@@ -26,10 +26,9 @@ import { hello } from 'npm:@hono/hello'
26
26
27
27
## How to contribute
28
28
29
-
Anyone can propose third-party Middleware.
30
-
The Hono maintainers and other contributors will discuss whether we accept the middleware or not.
31
-
If it's OK, it will be maintained in this repository.
32
-
The proposer maintains it.
29
+
Anyone can propose third-party Middleware. The Hono maintainers and other contributors will discuss whether we accept the middleware or not. If it's OK, it will be maintained in this repository. The proposer will be the maintainer for the middleware and maintain it.
30
+
31
+
The middleware maintainer should respond to issues and review PRs related to the middleware as much as possible. The Hono maintainers sometimes will mention the middleware maintainer using an `@` like `@yusukebe Can you take a look?`.
33
32
34
33
The specific flow is as follows
35
34
@@ -40,7 +39,7 @@ The specific flow is as follows
40
39
We use [changesets](https://github.com/changesets/changesets) to manage releases and CHANGELOG.
41
40
Run the following command at the top level to describe any changes.
0 commit comments