/Knowledge/sources/honojs__hono/llms-full/rpc-known-issues-ide-performance-split-your-app-and-client-into-multiple-files--12303e6fa444.md
RPC: Known issues > IDE performance > Split your app and client into....
RPC: Known issues IDE performance Split your app and client into multiple files Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https...
RPC: Known issues > IDE performance > Split your app and client into multiple files
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#split-your-app-and-client-into-multiple-files
Summary
As described in Using RPC with larger applications, you can split your app into multiple apps. You can also create a client for each app: ```ts // authors-cli.ts import { app as authorsApp } from '....
Content
As described in Using RPC with larger applications, you can split your app into multiple apps. You can also create a client for each app:
// 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')
This way, tsserver doesn't need to instantiate types for all routes at once.
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#split-your-app-and-client-into-multiple-files",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / RPC > Known issues > IDE performance > Split your app and client into multiple files",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 74,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "RPC: Known issues > IDE performance > Split your app and client into multiple files",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}