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

140 lines
2.0 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-17 08:43:40 +01:00
const app = Hono()
2021-12-17 07:53:31 +01:00
2021-12-20 03:58:40 +01:00
app.get('/', () => '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.
- Optimized for Cloudflare Workers.
2021-12-14 21:17:56 +01:00
## Install
```sh
$ yarn add hono
```
or
```sh
$ npm install hono
```
2021-12-20 03:58:40 +01:00
## Methods
- app.**HTTP_METHOD**(path, ...callback)
- app.**all**(path, ...callback)
- app.**route**(path)
- app.**before**(...callback)
- app.**after**(...callback)
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-17 07:53:31 +01:00
app.get('/', () => 'GET /')
app.post('/', () => 'POST /')
app.get('/wild/*/card', () => 'GET /wild/*/card')
```
2021-12-14 21:17:56 +01:00
2021-12-20 03:58:40 +01:00
`app.all`
```js
app.all('/hello', () => 'ALL Method /hello')
```
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
app.get('/user/:name', (req) => {
const name = req.params('name')
...
})
```
### Regexp
```js
app.get('/post/:date{[0-9]+}/:title{[a-z]+}', (req) => {
const date = req.params('date')
const title = req.params('title')
...
2021-12-14 21:17:56 +01:00
```
2021-12-17 07:53:31 +01:00
### Chained Route
```js
app
.route('/api/book')
.get(() => 'GET /api/book')
.post(() => 'POST /api/book')
.put(() => 'PUT /api/book')
```
2021-12-14 20:26:22 +01:00
2021-12-20 03:58:40 +01:00
## Middleware
```js
const logger = (req, _) => {
console.log(`${req.method}` : `${req.url}`)
}
app.before('/*', logger)
const addHeader = (_, res) => {
res.headers.add('X-message', 'This is addHeader middleware!')
}
const customNotFound = (_, res) => {
if (res.status == 404) {
return new Response('404 Not Found!!', {
status: 404
})
}
}
app.after('/*', addHeader, customNotFound)
```
## Request
### query
```js
app.get('/search', (req) => {
const query = req.query('q')
})
```
### params
```js
app.get('/entry/:id', (req) => {
const id = req.params('id')
})
```
2021-12-14 21:31:37 +01:00
## Related projects
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