/Knowledge/sources/honojs__hono/llms-full/azure-functions-setup--cb03ea3487de.md
Azure Functions: Setup - hono-docs
Azure Functions: Setup Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt 2 setup Summary Create a TypeSc...
Azure Functions: Setup
Source evidence: /Sources/honojs__hono/provenance.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 --typescript
Change 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 hono
yarn add @marplex/hono-azurefunc-adapter hono
pnpm add @marplex/hono-azurefunc-adapter hono
bun add @marplex/hono-azurefunc-adapter hono
:::
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#2-setup",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Azure Functions > 2. Setup",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 366,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Azure Functions: Setup",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}