npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@definitely-fine/hono

v0.1.1

Published

Hono middleware and handler helpers for definitely-fine scenarios.

Downloads

186

Readme

@definitely-fine/hono

@definitely-fine/hono connects definitely-fine scenario context to Hono middleware and route handling.

It reads a scenario id from a request header and runs Hono middleware or handlers inside the matching active scenario context.

Installation

pnpm add definitely-fine @definitely-fine/hono hono

Important

[!IMPORTANT] Do not leave scenario activation enabled in production by accident.

@definitely-fine/hono will activate scenario context whenever the request header is present. In production, pair this package with createRuntime({ enabled: false }) in your core runtime, or avoid installing the middleware and wrappers there entirely.

Core runtime protection:

import { createRuntime } from "definitely-fine";

const runtime = createRuntime<DemoContract>({
  enabled: process.env.NODE_ENV !== "production",
});

Optional middleware guard:

import { Hono } from "hono";
import { definitelyFineScenarioMiddleware } from "@definitely-fine/hono";

const app = new Hono();

if (process.env.NODE_ENV !== "production") {
  app.use("*", definitelyFineScenarioMiddleware());
}

What This Package Does

This package does not replace the core runtime. You still create your scenarios and wrapped runtime with definitely-fine.

Its job is narrower:

  • define the scenario header name constant
  • read that header from Headers, Request, or Hono Context
  • run Hono handlers or middleware inside runWithRuntimeScenarioContext()
flowchart LR
  subgraph C[Client or browser process]
    C1[request]
    C2[x-definitely-fine-scenario-id header]
  end

  subgraph H[Hono server process]
    H1[@definitely-fine/hono middleware or handler wrapper]
    H2[runWithRuntimeScenarioContext]
    H3[definitely-fine runtime]
    H4[wrapped app service or function]
  end

  subgraph S[Shared scenario storage]
    S1[(persisted scenario JSON)]
  end

  C1 --> C2 --> H1
  H1 --> H2 --> H3 --> H4
  H3 -- load active scenario --> S1

App Middleware

Use definitelyFineScenarioMiddleware() when you want one app-level middleware instead of wrapping every route.

import { Hono } from "hono";
import { definitelyFineScenarioMiddleware } from "@definitely-fine/hono";

const app = new Hono();

app.use("*", definitelyFineScenarioMiddleware());

Downstream handlers then run inside the matching scenario automatically when the request includes the scenario header.

Route Handlers

Use withDefinitelyFineScenario() when you want to scope scenario activation to a specific Hono handler.

import { Hono } from "hono";
import { withDefinitelyFineScenario } from "@definitely-fine/hono";

import { incrementCounter } from "../lib/demo-runtime";

const app = new Hono();

app.post(
  "/api/counter",
  withDefinitelyFineScenario((context) => {
    return context.json(incrementCounter());
  }),
);

If the request does not include the scenario header, the handler runs normally.

Header Name

The exported header constant is DEFINITELY_FINE_SCENARIO_HEADER.

import { DEFINITELY_FINE_SCENARIO_HEADER } from "@definitely-fine/hono";

const headers = {
  [DEFINITELY_FINE_SCENARIO_HEADER]: "scenario-id",
};

Typical Setup

  1. Create and save a scenario with definitely-fine.
  2. Add definitelyFineScenarioMiddleware() at app level, or wrap specific handlers with withDefinitelyFineScenario().
  3. Send the scenario id in the request header.
  4. Let your core runtime wrappers decide which calls are intercepted.

For safety, production apps should normally disable the core runtime with enabled: false and optionally skip this middleware or these wrappers entirely.

With Playwright

This package pairs naturally with @definitely-fine/playwright, which can create browser contexts that already include the scenario header.