/Knowledge/sources/honojs__hono/llms-full/cloudflare-workers-using-hono-with-other-event-handlers--16cdd2163011.md
Cloudflare Workers: Using Hono with other event handlers - hono-docs
Cloudflare Workers: Using Hono with other event handlers Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.t...
Cloudflare Workers: Using Hono with other event handlers
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#using-hono-with-other-event-handlers
Summary
You can integrate Hono with other event handlers (such as scheduled) in Module Worker mode. To do this, export app.fetch as the module's fetch handler, and then implement other handlers as needed: ```ts const app = new Hono() exp...
Content
You can integrate Hono with other event handlers (such as scheduled) in Module Worker mode.
To do this, export app.fetch as the module's fetch handler, and then implement other handlers as needed:
const app = new Hono()
export default {
fetch: app.fetch,
scheduled: async (batch, env) => {},
}
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#using-hono-with-other-event-handlers",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Cloudflare Workers > Using Hono with other event handlers",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 384,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Cloudflare Workers: Using Hono with other event handlers",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}