/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-2-setup-2b167d2766d5-2-setup-s0366-c0000.md
2. Setup - hono-docs
2. Setup Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt 2 setup Summary Create a TypeScript Node...
2. Setup
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#2-setup
Summary
Create a TypeScript Node.js V4 project in the current folder. sh func init --typescript Change the default route prefix of the host. Add this property to the root json object of host.json: ```json "extensions": { "http": { "rout...
Content
Create a TypeScript Node.js V4 project in the current folder.
func init --typescriptChange the default route prefix of the host. Add this property to the root json object of host.json:
"extensions": {
"http": {
"routePrefix": ""
}
}::: info
The default Azure Functions route prefix is /api. If you don't change it as shown above, be sure to start all your Hono routes with /api
:::
Now you are ready to install Hono and the Azure Functions Adapter with:
::: code-group
npm i @marplex/hono-azurefunc-adapter honoyarn add @marplex/hono-azurefunc-adapter honopnpm add @marplex/hono-azurefunc-adapter honobun add @marplex/hono-azurefunc-adapter hono:::