/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-using-hono-with-oth-7411c2ac367f-using-hono-with-other-event-handlers-s0384-c0000.md
Using Hono with other event handlers - hono-docs
Using Hono with other event handlers Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt using hono w...
Using Hono with other event handlers
Source evidence: /Sources/raw/honojshono/honojshono.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) => {},
}