0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-21 18:18:57 +01:00
hono/README.md

178 lines
2.7 KiB
Markdown
Raw Normal View History

2021-12-17 07:53:31 +01:00
# Hono
2021-12-14 21:17:56 +01:00
2021-12-17 07:53:31 +01:00
Hono [炎] - Tiny web framework for Cloudflare Workers and others.
```js
2021-12-28 13:16:27 +01:00
const Hono = require('hono')
2021-12-17 08:43:40 +01:00
const app = Hono()
2021-12-17 07:53:31 +01:00
2021-12-20 23:34:38 +01:00
app.get('/', () => new Response('Hono!!'))
2021-12-17 07:53:31 +01:00
app.fire()
```
## Feature
- Fast - the router is implemented with Trie-Tree structure.
- Tiny - use only standard API.
- Portable - zero dependencies.
2021-12-21 09:37:02 +01:00
- Flexible - you can make your own middlewares.
2021-12-22 19:08:44 +01:00
- Optimized - for Cloudflare Workers and Fastly Compute@Edge.
2021-12-14 21:17:56 +01:00
2021-12-27 17:34:09 +01:00
## Benchmark
```
hono x 813,001 ops/sec ±2.96% (75 runs sampled)
itty-router x 160,415 ops/sec ±3.31% (85 runs sampled)
2021-12-27 23:41:53 +01:00
sunder x 307,438 ops/sec ±4.77% (73 runs sampled)
2021-12-27 17:34:09 +01:00
Fastest is hono
✨ Done in 37.03s.
```
2021-12-14 21:17:56 +01:00
## Install
2021-12-20 23:34:38 +01:00
```
2021-12-14 21:17:56 +01:00
$ yarn add hono
```
or
```sh
$ npm install hono
```
2021-12-20 03:58:40 +01:00
## Methods
2021-12-20 23:34:38 +01:00
- app.**HTTP_METHOD**(path, callback)
- app.**all**(path, callback)
2021-12-20 03:58:40 +01:00
- app.**route**(path)
2021-12-20 23:34:38 +01:00
- app.**use**(path, middleware)
2021-12-20 03:58:40 +01:00
2021-12-17 07:53:31 +01:00
## Routing
### Basic
2021-12-14 21:17:56 +01:00
2021-12-20 03:58:40 +01:00
`app.HTTP_METHOD`
2021-12-14 21:17:56 +01:00
```js
2021-12-20 23:34:38 +01:00
// HTTP Methods
app.get('/', () => new Response('GET /'))
app.post('/', () => new Response('POST /'))
// Wildcard
2021-12-21 09:37:02 +01:00
app.get('/wild/*/card', () => {
2021-12-21 10:37:24 +01:00
return new Response('GET /wild/*/card')
2021-12-20 23:34:38 +01:00
})
2021-12-17 07:53:31 +01:00
```
2021-12-14 21:17:56 +01:00
2021-12-20 03:58:40 +01:00
`app.all`
```js
2021-12-20 23:34:38 +01:00
// Any HTTP methods
2021-12-22 20:24:14 +01:00
app.all('/hello', () => new Response('ALL Method /hello'))
2021-12-20 03:58:40 +01:00
```
2021-12-17 07:53:31 +01:00
### Named Parameter
2021-12-14 21:17:56 +01:00
2021-12-17 07:53:31 +01:00
```js
2021-12-21 09:37:02 +01:00
app.get('/user/:name', (c) => {
const name = c.req.params('name')
2021-12-17 07:53:31 +01:00
...
})
```
### Regexp
```js
2021-12-21 09:37:02 +01:00
app.get('/post/:date{[0-9]+}/:title{[a-z]+}', (c) => {
const date = c.req.params('date')
const title = c.req.params('title')
2021-12-17 07:53:31 +01:00
...
2021-12-14 21:17:56 +01:00
```
2021-12-17 07:53:31 +01:00
### Chained Route
```js
app
.route('/api/book')
2021-12-21 09:37:02 +01:00
.get(() => {...})
.post(() => {...})
.put(() => {...})
2021-12-17 07:53:31 +01:00
```
2021-12-14 20:26:22 +01:00
2021-12-20 03:58:40 +01:00
## Middleware
```js
2021-12-21 09:37:02 +01:00
const logger = (c, next) => {
console.log(`[${c.req.method}] ${c.req.url}`)
2021-12-20 18:35:03 +01:00
next()
2021-12-20 03:58:40 +01:00
}
2021-12-21 09:37:02 +01:00
const addHeader = (c, next) => {
2021-12-20 18:35:03 +01:00
next()
2021-12-21 09:37:02 +01:00
c.res.headers.add('x-message', 'This is middleware!')
2021-12-20 03:58:40 +01:00
}
2021-12-20 18:35:03 +01:00
app = app.use('*', logger)
app = app.use('/message/*', addHeader)
app.get('/message/hello', () => 'Hello Middleware!')
2021-12-20 03:58:40 +01:00
```
2021-12-21 09:37:02 +01:00
## Context
### req
```js
app.get('/hello', (c) => {
const userAgent = c.req.headers('User-Agent')
...
})
```
### res
```js
app.use('/', (c, next) => {
next()
c.res.headers.append('X-Debug', 'Debug message')
})
```
2021-12-20 03:58:40 +01:00
## Request
### query
```js
2021-12-21 09:37:02 +01:00
app.get('/search', (c) => {
const query = c.req.query('q')
...
2021-12-20 03:58:40 +01:00
})
```
### params
```js
2021-12-21 09:37:02 +01:00
app.get('/entry/:id', (c) => {
const id = c.req.params('id')
...
2021-12-20 03:58:40 +01:00
})
```
2021-12-14 21:31:37 +01:00
## Related projects
2021-12-20 23:34:38 +01:00
- koa <https://github.com/koajs/koa>
- express <https://github.com/expressjs/express>
2021-12-22 19:08:44 +01:00
- oak <https://github.com/oakserver/oak>
2021-12-17 07:53:31 +01:00
- itty-router <https://github.com/kwhitley/itty-router>
2021-12-20 03:58:40 +01:00
- Sunder <https://github.com/SunderJS/sunder>
- goblin <https://github.com/bmf-san/goblin>
2021-12-14 21:31:37 +01:00
2021-12-14 20:26:22 +01:00
## Author
Yusuke Wada <https://github.com/yusukebe>
## License
MIT