# Hono\[炎\]
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/yusukebe/hono/ci)](https://github.com/yusukebe/hono/actions) [![GitHub](https://img.shields.io/github/license/yusukebe/hono)](https://github.com/yusukebe/hono/blob/master/LICENSE) [![npm](https://img.shields.io/npm/v/hono)](https://www.npmjs.com/package/hono) [![npm](https://img.shields.io/npm/dm/hono)](https://www.npmjs.com/package/hono) [![npm type definitions](https://img.shields.io/npm/types/hono)](https://www.npmjs.com/package/hono) [![GitHub commit activity](https://img.shields.io/github/commit-activity/m/yusukebe/hono)](https://github.com/yusukebe/hono/pulse) [![GitHub last commit](https://img.shields.io/github/last-commit/yusukebe/hono)](https://github.com/yusukebe/hono/commits/master) Hono[炎] - _日本語の炎に由来 🔥_ - はCloudflare WorkersやFastly Compute@Edge向けの小さくて、シンプルで、めちゃくちゃ速いWebフレームワークです。 ```js import { Hono } from 'hono' const app = new Hono() app.get('/', (c) => c.text('Hono!!')) app.fire() ``` ## 特徴 - **めちゃくちゃ速い** - ルーターはぐるぐるループを回しません。 - **依存ゼロ** - Service WorkerもしくはWebスタンダードのAPIしか使っていません。 - **ミドルウェア** - ビルトイン・ミドルウェアに加え自分でミドルウェアを作ることができます。 - **最適化** - Cloudflare Workersに最適化されています。 ## ベンチマーク 他のCloudflare Workers向けのルーターと比べると**Honoが一番速い**です。 ```plain hono x 809,503 ops/sec ±6.94% (73 runs sampled) itty-router x 157,310 ops/sec ±4.31% (87 runs sampled) sunder x 328,350 ops/sec ±2.30% (95 runs sampled) worktop x 209,758 ops/sec ±4.28% (83 runs sampled) Fastest is hono ✨ Done in 60.66s. ``` ## 1分間で分かるHono Honoを使って、Cloudflare Workersのアプリケーションを作っている様子です。 ![Demo](https://user-images.githubusercontent.com/10682/151973526-342644f9-71c5-4fee-81f4-64a7558bb192.gif) 名前付きパラメーターにも型がつきます。 ![Demo](https://user-images.githubusercontent.com/10682/154179671-9e491597-6778-44ac-a8e6-4483d7ad5393.png) ## インストール NPMリポジトリからインストールできます。 ``` $ yarn add hono ``` `yarn`、もしくは`npm`コマンドでインストール。 ``` $ npm install hono ``` ## メソッド `Hono`のインスタンスには以下のメソッドがあります。 - app.**HTTP_METHOD**(path, handler) - app.**all**(path, handler) - app.**route**(path) - app.**use**(path, middleware) - app.**notFound**(handler) - app.**onError**(err, handler) - app.**fire**() - app.**fetch**(request, env, event) ## ルーティング ### 基本 ```js // HTTPメソッド app.get('/', (c) => c.text('GET /')) app.post('/', (c) => c.text('POST /')) // ワイルドカード app.get('/wild/*/card', (c) => { return c.text('GET /wild/*/card') }) // どんなHTTPメソッドも受け付ける app.all('/hello', (c) => c.text('Any Method /hello')) ``` ### URLからパラメーターを受け取る ```js app.get('/user/:name', (c) => { const name = c.req.param('name') ... }) ``` ### 正規表現 ```js app.get('/post/:date{[0-9]+}/:title{[a-z]+}', (c) => { const date = c.req.param('date') const title = c.req.param('title') ... }) ``` ### ネストされたルート ```js const book = app.route('/book') book.get('/', (c) => c.text('List Books')) // GET /book と同じ book.get('/:id', (c) => { // GET /book/:id と同じ const id = c.req.param('id') return c.text('Get Book: ' + id) }) book.post('/', (c) => c.text('Create Book')) // POST /book と同じ ``` ### 末尾のスラッシュの扱い `strict`がfalseの場合、`/hello`と`/hello/`は同じように扱われます。 ```js const app = new Hono({ strict: false }) // デフォルトはtrue app.get('/hello', (c) => c.text('/hello or /hello/')) ``` ### async/await ```js app.get('/fetch-url', async (c) => { const response = await fetch('https://example.com/') return c.text(`Status is ${response.status}`) }) ``` ## ミドルウェア ### ビルトイン・ミドルウェア 備え付けのミドルウェアが用意されています。 ```js import { Hono } from 'hono' import { poweredBy } from 'hono/powered-by' import { logger } from 'hono/logger' import { basicAuth } from 'hono/basicAuth' const app = new Hono() app.use('*', poweredBy()) app.use('*', logger()) app.use( '/auth/*', basicAuth({ username: 'hono', password: 'acoolproject', }) ) ``` 利用可能なビルトイン・ミドルウェアについては[src/middleware](https://github.com/yusukebe/hono/tree/master/src/middleware)を参照してください。 ### カスタム・ミドルウェア 自分でミドルウェアを書くことができます。 ```js // カスタムロガー app.use('*', async (c, next) => { console.log(`[${c.req.method}] ${c.req.url}`) await next() }) // カスタムヘッダーの追加 app.use('/message/*', async (c, next) => { await next() c.header('x-message', 'This is middleware!') }) app.get('/message/hello', (c) => c.text('Hello Middleware!')) ``` ## Not Found 「Not Found」レスポンスをカスタマイズした時は`app.notFound`を使います。 ```js app.notFound((c) => { return c.text('Custom 404 Message', 404) }) ``` ## エラーハンドリング エラーハンドリングには`app.onError`を使います。 ```js app.onError((err, c) => { console.error(`${err}`) return c.text('Custom Error Message', 500) }) ``` ## Context レスポンス、リクエストを扱うには`Context`を使います。 ### c.req ```js // リクエストオブジェクトへアクセスする app.get('/hello', (c) => { const userAgent = c.req.headers.get('User-Agent') ... }) // ヘッダーの値を取得する app.get('/shortcut', (c) => { const userAgent = c.req.header('User-Agent') ... }) // クエリーパラメーター app.get('/search', (c) => { const query = c.req.query('q') ... }) // URLからのパラメーターを受け取る app.get('/entry/:id', (c) => { const id = c.req.param('id') ... }) ``` ### レスポンスへのショートカット ```js app.get('/welcome', (c) => { // ヘッダーの設定 c.header('X-Message', 'Hello!') c.header('Content-Type', 'text/plain') // HTTPステータスコードの設定 c.status(201) // レスポンスを返す return c.body('Thank you for comming') }) ``` 上記で返すレスポンスは以下と同じです。 ```js new Response('Thank you for comming', { status: 201, statusText: 'Created', headers: { 'X-Message': 'Hello', 'Content-Type': 'text/plain', 'Content-Length': '22', }, }) ``` ### c.text() `Content-Type:text/plain`ヘッダーをつけてテキストを返します。 ```js app.get('/say', (c) => { return c.text('Hello!') }) ``` ### c.json() `Content-Type:application/json`ヘッダーをつけてJSONを返します。 ```js app.get('/api', (c) => { return c.json({ message: 'Hello!' }) }) ``` ### c.html() `Content-Type:text/html`ヘッダーをつけてHTMLを返します。 ```js app.get('/', (c) => { return c.html('