RPC
RPC 機能を使用すると、サーバとクライアント間で API の仕様を共有することができます。
まず、サーバのコードから Hono アプリケーション (一般的には AppType と呼ばれます) - またはクライアントで利用したいルート - を typeof したものをエクスポートします。
ジェネリック引数として AppType を受け取ることで、 Hono クライアントは、バリデータで指定された入力の型と c.json() を使ってハンドラが返した出力の型の両方を推論することができます。
NOTE
RPC の型が monorepo で適切に動作するには、クライアントとサーバ両方の tsconfig.json ファイル内で、 compilerOptions に "strict": true を設定します。 詳細はこちら
サーバ
サーバ側でしなければならないことはバリデータを記述することで、変数 route を生成します。次のサンプルでは Zod Validator を使用します。
const route = app.post(
'/posts',
zValidator(
'form',
z.object({
title: z.string(),
body: z.string(),
})
),
(c) => {
// ...
return c.json(
{
ok: true,
message: 'Created!',
},
201
)
}
)次に、クライアントに API を共有するために型をエクスポートします。
export type AppType = typeof routeクライアント
クライアント側では、まず hc と AppType をインポートします。
import type { AppType } from '.'
import { hc } from 'hono/client'hc はクライアントを生成する関数です。 ジェネリクスとして AppType を渡し、引数としてサーバの URL を指定します。
const client = hc<AppType>('http://localhost:8787/')client.{path}.{method} をコールし、引数としてサーバに送りたいデータを渡します。
const res = await client.posts.$post({
form: {
title: 'Hello',
body: 'Hono is a cool project',
},
})res は "fetch" レスポンスと互換性があります。 res.json() を使ってサーバからデータを取り出すことができます。
if (res.ok) {
const data = await res.json()
console.log(data.message)
}クッキー
クライアントがリクエスト毎にクッキーを送るためには、クライアント生成時、オプションに { 'init': { 'credentials": 'include' } } を追加します。
// client.ts
const client = hc<AppType>('http://localhost:8787/', {
init: {
credentials: 'include',
},
})
// このリクエストは、セットしたあらゆるクッキーを含んでいます
const res = await client.posts.$get({
query: {
id: '123',
},
})ステータスコード
c.json() で 200 や 404 のようなステータスコードを明示的に指定したい場合、クライアントに渡す型として追加します。
// server.ts
const app = new Hono().get(
'/posts',
zValidator(
'query',
z.object({
id: z.string(),
})
),
async (c) => {
const { id } = c.req.valid('query')
const post: Post | undefined = await getPost(id)
if (post === undefined) {
return c.json({ error: 'not found' }, 404) // Specify 404
}
return c.json({ post }, 200) // Specify 200
}
)
export type AppType = typeof appステータスコードによってデータを取得できます。
// client.ts
const client = hc<AppType>('http://localhost:8787/')
const res = await client.posts.$get({
query: {
id: '123',
},
})
if (res.status === 404) {
const data: { error: string } = await res.json()
console.log(data.error)
}
if (res.ok) {
const data: { post: Post } = await res.json()
console.log(data.post)
}
// { post: Post } | { error: string }
type ResponseType = InferResponseType<typeof client.posts.$get>
// { post: Post }
type ResponseType200 = InferResponseType<
typeof client.posts.$get,
200
>グローバルレスポンス
Hono の RPC クライアントは、app.onError() や グローバルミドルウェアのようなグローバルのエラーハンドラから、自動的にレスポンスの型を推論しません。 全てのルートにグローバルなエラーレスポンス型をマージするために ApplyGlobalResponse 型ヘルパーを使用することができます。
import type { ApplyGlobalResponse } from 'hono/client'
const app = new Hono()
.get('/api/users', (c) => c.json({ users: ['alice', 'bob'] }, 200))
.onError((err, c) => c.json({ error: err.message }, 500))
type AppWithErrors = ApplyGlobalResponse<
typeof app,
{
500: { json: { error: string } }
}
>
const client = hc<AppWithErrors>('http://localhost')クライアントは成功時とエラー時のレスポンス両方について知っています:
const res = await client.api.users.$get()
if (res.ok) {
const data = await res.json() // { users: string[] }
}
// InferResponseType はグローバルエラー型を含んでいます
type ResType = InferResponseType<typeof client.api.users.$get>
// { users: string[] } | { error: string }一度で複数のグローバルエラーステータスコードを定義することもできます:
type AppWithErrors = ApplyGlobalResponse<
typeof app,
{
401: { json: { error: string; message: string } }
500: { json: { error: string; message: string } }
}
>Not Found
クライアントを使用したい場合、 Not Found レスポンスを返すのに c.notFound() を使用すべきではありません。クライアントがサーバから取得するデータは、正しく推論することができません。
// server.ts
export const routes = new Hono().get(
'/posts',
zValidator(
'query',
z.object({
id: z.string(),
})
),
async (c) => {
const { id } = c.req.valid('query')
const post: Post | undefined = await getPost(id)
if (post === undefined) {
return c.notFound() // ❌️
}
return c.json({ post })
}
)
// client.ts
import { hc } from 'hono/client'
const client = hc<typeof routes>('/')
const res = await client.posts[':id'].$get({
param: {
id: '123',
},
})
const data = await res.json() // 🙁 data is unknownc.json() を使用して、Not Found レスポンスとしてステータスコードを指定してください。
export const routes = new Hono().get(
'/posts',
zValidator(
'query',
z.object({
id: z.string(),
})
),
async (c) => {
const { id } = c.req.valid('query')
const post = await getPost(id)
if (!post) {
return c.json({ error: 'not found' }, 404) // Specify 404
}
return c.json({ post }, 200) // Specify 200
}
)あるいは、 NotFoundResponse インタフェースを継承したモジュール拡張を使用することができます。 これを使用すると、 c.notFound() が型レスポンスを返すことができます:
// server.ts
import { Hono, TypedResponse } from 'hono'
declare module 'hono' {
interface NotFoundResponse
extends Response,
TypedResponse<{ error: string }, 404, 'json'> {}
}
const app = new Hono()
.get('/posts/:id', async (c) => {
const post = await getPost(c.req.param('id'))
if (!post) {
return c.notFound()
}
return c.json({ post }, 200)
})
.notFound((c) => c.json({ error: 'not found' }, 404))
export type AppType = typeof appクライアントは、 404 レスポンス型を正しく推論します。
パスパラメータ
パスパラメータやクエリ値を含んだルートを処理することもできます。
const route = app.get(
'/posts/:id',
zValidator(
'query',
z.object({
page: z.coerce.number().optional(), // 強制的に数値に変換
})
),
(c) => {
// ...
return c.json({
title: 'Night',
body: 'Time to sleep',
})
}
)たとえ元の値が異なる型であったとしても、パスパラメータやクエリ値はどちらも、 string として渡さなければなりません。
param でパスに含ませたい文字列を、 query でクエリ値として含ませたい文字列を指定します。
const res = await client.posts[':id'].$get({
param: {
id: '123',
},
query: {
page: '1', // `string` だがバリデータで `number` に変換される
},
})複数パラメータ
複数パラメータを使ってルートを処理します。
const route = app.get(
'/posts/:postId/:authorId',
zValidator(
'query',
z.object({
page: z.string().optional(),
})
),
(c) => {
// ...
return c.json({
title: 'Night',
body: 'Time to sleep',
})
}
)パスにパラメータを指定するために複数の [''] を追加します。
const res = await client.posts[':postId'][':authorId'].$get({
param: {
postId: '123',
authorId: '456',
},
query: {},
})スラッシュを含める
hc 関数は param の値を URL エンコードしません。パラメータにスラッシュを含めるには、正規表現を使用します。
// client.ts
// Requests /posts/123/456
const res = await client.posts[':id'].$get({
param: {
id: '123/456',
},
})
// server.ts
const route = app.get(
'/posts/:id{.+}',
zValidator(
'param',
z.object({
id: z.string(),
})
),
(c) => {
// id: 123/456
const { id } = c.req.valid('param')
// ...
}
)NOTE
正規表現を使用しない基本的なパスパラメータは、スラッシュにマッチしません。 hc 関数を使用してスラッシュを含む param を渡す場合、サーバは意図したようにはルート処理しないかもしれません。正確なルート処理を強制するためには、 encodeURIComponent を使用してパラメータをエンコードすることが推奨されます。
ヘッダ
リクエストにヘッダを追加することができます。
const res = await client.search.$get(
{
//...
},
{
headers: {
'X-Custom-Header': 'Here is Hono Client',
'X-User-Agent': 'hc',
},
}
)全てのリクエストに共通のヘッダを追加するには、 hc 関数の引数に指定します。
const client = hc<AppType>('/api', {
headers: {
Authorization: 'Bearer TOKEN',
},
})init オプション
init オプションとしてリクエストに fetch の RequestInit オブジェクトを渡すことができます。 以下はリクエストを中止する例です。
import { hc } from 'hono/client'
const client = hc<AppType>('http://localhost:8787/')
const abortController = new AbortController()
const res = await client.api.posts.$post(
{
json: {
// Request body
},
},
{
// RequestInit object
init: {
signal: abortController.signal,
},
}
)
// ...
abortController.abort()INFO
init で定義される RequestInit オブジェクトは最高の優先度があります。 body | method | headers のような他のオプションでセットされる内容をオーバーライドするために使用されます。
$url()
$url() を使用してエンドポイントにアクセスするための URL オブジェクトを取得できます。
WARNING
動作させるためには、絶対 URL を渡さなければなりません。 相対 URLである / を渡すと、次のようなエラーになります。
Uncaught TypeError: Failed to construct 'URL': Invalid URL
// ❌ エラーをスローするでしょう
const client = hc<AppType>('/')
client.api.post.$url()
// ✅ 期待通りに動作するでしょう
const client = hc<AppType>('http://localhost:8787/')
client.api.post.$url()const route = app
.get('/api/posts', (c) => c.json({ posts }))
.get('/api/posts/:id', (c) => c.json({ post }))
const client = hc<typeof route>('http://localhost:8787/')
let url = client.api.posts.$url()
console.log(url.pathname) // `/api/posts`
url = client.api.posts[':id'].$url({
param: {
id: '123',
},
})
console.log(url.pathname) // `/api/posts/123`型安全な URL
より正確な URL の型を取得するために、 hc に2 つ目の型引数としてベース URL を渡すことができます:
const client = hc<typeof route, 'http://localhost:8787'>(
'http://localhost:8787/'
)
const url = client.api.posts.$url()
// url は正確な型情報(プロトコル, ホスト, パスを含む)
// をもった型安全な URL ですSWR のようなライブラリに対して型安全なキーとして URL を使用したいときに有用です。
$path()
$path() は $url() と同じですが、 URL オブジェクトの代わりにパス文字列を返します。 $url() とは違って、ベース URL オリジンを含みません。 そのため、hc に渡すベース URL に関係なく動作します。
const route = app
.get('/api/posts', (c) => c.json({ posts }))
.get('/api/posts/:id', (c) => c.json({ post }))
const client = hc<typeof route>('http://localhost:8787/')
let path = client.api.posts.$path()
console.log(path) // `/api/posts`
path = client.api.posts[':id'].$path({
param: {
id: '123',
},
})
console.log(path) // `/api/posts/123`クエリパラメータも渡すことができます:
const path = client.api.posts.$path({
query: {
page: '1',
limit: '10',
},
})
console.log(path) // `/api/posts?page=1&limit=10`ファイルのアップロード
フォームのボディを使用してファイルをアップロードできます:
// client
const res = await client.user.picture.$put({
form: {
file: new File([fileToUpload], filename, {
type: fileToUpload.type,
}),
},
})// server
const route = app.put(
'/user/picture',
zValidator(
'form',
z.object({
file: z.instanceof(File),
})
)
// ...
)カスタム fetch メソッド
カスタム fetch メソッドをセットすることができます。
以下の Cloudflare Worker 用のサンプルスクリプトでは、サービスにバインドされた fetch メソッドがデフォルトの fetch の代わりに使用されています。
# wrangler.toml
services = [
{ binding = "AUTH", service = "auth-service" },
]// src/client.ts
const client = hc<CreateProfileType>('http://localhost', {
fetch: c.env.AUTH.fetch.bind(c.env.AUTH),
})カスタムクエリシリアライザ
buildSearchParams オプションを使用して、クエリパラメータがどのようにシリアライズされるかをカスタマイズすることができます。 配列や他のカスタム形式用にブラケット記法が必要なときに有用です:
const client = hc<AppType>('http://localhost', {
buildSearchParams: (query) => {
const searchParams = new URLSearchParams()
for (const [k, v] of Object.entries(query)) {
if (v === undefined) {
continue
}
if (Array.isArray(v)) {
v.forEach((item) => searchParams.append(`${k}[]`, item))
} else {
searchParams.set(k, v)
}
}
return searchParams
},
})推論
リクエストされたオブジェクトの型や返されるオブジェクトの型を知るために InferRequestType や InferResponseType を使用します。
import type { InferRequestType, InferResponseType } from 'hono/client'
// InferRequestType
const $post = client.todo.$post
type ReqType = InferRequestType<typeof $post>['form']
// InferResponseType
type ResType = InferResponseType<typeof $post>型安全なヘルパーを使用してレスポンスを解析する
型安全に hc からのレスポンスを簡単に解析するために parseResponse() ヘルパーを使用できます。
import { parseResponse, DetailedError } from 'hono/client'
// result は解析されたレスポンスボディ (Content-Type に基づいて自動的に解析されます) を含みます
const result = await parseResponse(client.hello.$get()).catch(
(e: DetailedError) => {
console.error(e)
}
)
// レスポンスが OK でない場合、 parseResponse は自動的にエラーをスローしますSWR を使用する
SWR のような React のフックライブラリを使用することもできます。
import useSWR from 'swr'
import { hc } from 'hono/client'
import type { InferRequestType } from 'hono/client'
import type { AppType } from '../functions/api/[[route]]'
const App = () => {
const client = hc<AppType>('/api')
const $get = client.hello.$get
const fetcher =
(arg: InferRequestType<typeof $get>) => async () => {
const res = await $get(arg)
return await res.json()
}
const { data, error, isLoading } = useSWR(
'api-hello',
fetcher({
query: {
name: 'SWR',
},
})
)
if (error) return <div>failed to load</div>
if (isLoading) return <div>loading...</div>
return <h1>{data?.message}</h1>
}
export default Appより大規模なアプリケーションで RPC を使用する
より大規模なアプリケーションでは、 Building a larger application で述べられている例のように、推論結果の型に注意が必要です。 このための簡単な方法は、ハンドラをチェーンすることです。 そうすることで型が常に推論されます。
// authors.ts
import { Hono } from 'hono'
const app = new Hono()
.get('/', (c) => c.json('list authors'))
.post('/', (c) => c.json('create an author', 201))
.get('/:id', (c) => c.json(`get ${c.req.param('id')}`))
export default app// books.ts
import { Hono } from 'hono'
const app = new Hono()
.get('/', (c) => c.json('list books'))
.post('/', (c) => c.json('create a book', 201))
.get('/:id', (c) => c.json(`get ${c.req.param('id')}`))
export default app通常通りに、サブルータをインポートすることができます。 ハンドラをチェーンしていることを確認します。 この場合、アプリケーションのトップレベルなので、エクスポートしたい型になります。
// index.ts
import { Hono } from 'hono'
import authors from './authors'
import books from './books'
const app = new Hono()
const routes = app.route('/authors', authors).route('/books', books)
export default app
export type AppType = typeof routes登録された AppType を使用して新しいクライアントを生成することができます。 普通にそのクライアントを使用します。
既知の問題
IDE のパフォーマンス
RPC を使用する際に、より多くのルートがあると、 IDE はより遅くなります。 主な理由の一つは、アプリケーションの型を推論するために大量の型インスタンスが実行されるためです
たとえば、次のようなルートを持っているとします:
// app.ts
export const app = new Hono().get('foo/:id', (c) =>
c.json({ ok: true }, 200)
)Hono は次のように型を推論します:
export const app = Hono<BlankEnv, BlankSchema, '/'>().get<
'foo/:id',
'foo/:id',
JSONRespondReturn<{ ok: boolean }, 200>,
BlankInput,
BlankEnv
>('foo/:id', (c) => c.json({ ok: true }, 200))これはシングルルートの型インスタンスです。 ユーザは手動でこれらの型引数を記述する必要がない(これはよいことですが)、一方で型インスタンスは多くの時間を消費することが知られています。 IDE で使用されている tsserver は、アプリケーションを使用するたびに、時間のかかる処理をします。 多くのルートがある場合、 IDE は大幅に遅くなる可能性があります。
しかし、この問題を軽減するためのいくつかのヒントがあります
Hono のバージョンのミスマッチ
バックエンドがフロントエンドと分割されており、それぞれが異なるディレクトリにある場合、 Hono のバージョンがマッチしていることを確認する必要があります。 バックエンドでは Hono はあるバージョンを使用していて、フロントエンドでは別のバージョンを使用している場合、型インスタンスが極端に深く無限にループする という問題に直面します。
TypeScript のプロジェクト参照
Hono のバージョンのミスマッチ のケースと同様に、バックエンドとフロントエンドが分割されている場合に起きる問題に直面します。 バックエンド (たとえば AppType) からフロントエンド上のコードにアクセスしたい場合、プロジェクト参照 を使用する必要があります。 TypeScript のプロジェクト参照を使用すると、ある TypeScript のコードが、別の TypeScript のコードにアクセスしたり、使用したりすることができます。 (ソース: Hono RPC と TypeScript のプロジェクト参照)
事前にコンパイルする (推奨)
tsc は、コンパイル時に型インスタンスのような重いタスクを処理することができます。 tsserver は、使用するたび毎にすべての型引数をインスタンス化する必要がありません。 このように IDE はかなり速くなります!
サーバアプリケーションを含むクライアントをコンパイルすることは、ベストパフォーマンスを与えてくれます。 プロジェクトで次のコードを記述します:
import { app } from './app'
import { hc } from 'hono/client'
// これは、コンパイル時に型を計算するためのトリックです。
export type Client = ReturnType<typeof hc<typeof app>>
export const hcWithType = (...args: Parameters<typeof hc>): Client =>
hc<typeof app>(...args)コンパイル後、すでに計算された型をクライアントが取得するために hc の代わりに hcWithType を使用することができます。
const client = hcWithType('http://localhost:8787/')
const res = await client.posts.$post({
form: {
title: 'Hello',
body: 'Hono is a cool project',
},
})プロジェクトが ノリポである場合、このソリューションはよくフィットします。 turborepo のようなツールを使用すると、サーバプロジェクトとクライアントプロジェクトを簡単に分割することができ、両者の間の依存関係を管理する面でよりよい結合を得ることができます。 ここに、動作するサンプルがあります。
concurrently や npm-run-all のようなツールを使うことで手動でビルドプロセスの調和を取ることもできます。
手動で型引数を指定する
これはかなりやっかいですが、型インスタンス化を避けるために手動で型引数を指定することができます。
const app = new Hono().get<'foo/:id'>('foo/:id', (c) =>
c.json({ ok: true }, 200)
)たくさんのルートがある場合に多くの時間と労力がかかる一方で、単一の型引数だけを指定することで、パフォーマンスに違いがあります。
アプリケーションとクライアントを複数のファイルに分割する
より大規模なアプリケーションで RPC を使用する に記述されているように、アプリケーションを複数のアプリケーションに分割することができます。 それぞれのアプリケーション毎にクライアントを生成することができます:
// authors-cli.ts
import { app as authorsApp } from './authors'
import { hc } from 'hono/client'
const authorsClient = hc<typeof authorsApp>('/authors')
// books-cli.ts
import { app as booksApp } from './books'
import { hc } from 'hono/client'
const booksClient = hc<typeof booksApp>('/books')このように tsserver は、同時にすべてのルートの型をインスタンス化する必要はありません。