Modulis for Hono
Add observability to your Hono applications across any runtime. Monitor edge deployments, middleware chains, and multi-runtime applications with minimal overhead.
Get Started in Minutes
Add Modulis to your Hono project with just a few lines of code.
Install the package
npm install @modulis/hono Add Modulis middleware to your Hono app
import { Hono } from 'hono';
import { modulis } from '@modulis/hono';
const app = new Hono();
// Add Modulis middleware
app.use('*', modulis({
apiKey: 'YOUR_API_KEY',
}));
app.get('/', (c) => c.text('Hello Hono!'));
export default app; Deploy and monitor
Deploy your application and start seeing real-time telemetry data in your Modulis dashboard within seconds.
Key Features for Hono
Purpose-built instrumentation designed for the Hono ecosystem.
Edge Runtime Support
Native support for Cloudflare Workers, Deno Deploy, Bun, and other edge runtimes.
Middleware Tracing
Trace the full middleware chain execution with per-middleware timing and error context.
Multi-runtime Support
Monitor your Hono app consistently across Node.js, Bun, Deno, and edge environments.
Lightweight Integration
Minimal footprint designed for edge environments where bundle size matters.
Why Modulis + Hono?
Under 5KB gzipped for edge-optimized deployments
Works with Hono's middleware composition pattern
Automatic request/response logging
Compatible with Hono RPC and validator middleware