Hypertea is a tiny TypeScript TEA runtime for SSR client islands.
The goal is to make the client-side parts of a server-rendered app feel close to Elm:
- a typed model
- typed messages
- a pure update function
- managed effects
- managed subscriptions
- strict linting around side effects
- full test coverage
This is not meant to become a broad SPA framework. It exists for small interactive islands that need more safety than loose JavaScript snippets, without paying the cost of a large client runtime.
The runtime exposes:
defineProgram()for one canonicalFlags,Model,Msg, andEffectdefinition shared by production and testsmountProgram()for mounting a program into a caller-provided elementmountIslands()for scanning server-rendered mounts, parsing flags, and mounting canonical programsstart()for lower-level hosts that already construct a runtimeh()andfragment()for TSX-friendly element VNodes- package-provided JSX types for TSX islands
text()for text VNodesmemo()for memoized view islands- program-bound event helpers such as
clicked,inputChanged,checkedChanged, andsubmitted - browser subscription helpers such as
every,keyPressed, andwindowResized - lower-level
app()support for the small Hyperapp-shaped runtime underneath - keyed DOM patching
The package also includes:
- strict TypeScript config
- ESLint configured as an Elm-like safety rail
- Vitest with 100 percent coverage thresholds
- ADRs describing the intended design
- helpers for exhaustive matching and empty effects
The ESLint config is part of the runtime design. It exists to make TypeScript app code behave more like Elm code:
- ordinary modules cannot call unmanaged side-effect APIs like
fetch, timers, browser globals, storage, randomness, or wall-clock APIs - promises must be handled
- boolean checks must be explicit
- mutation is discouraged through readonly-oriented rules
- TypeScript strictness catches missing branches, unchecked index access, and optional-field mistakes
Approved effect and subscription modules are where browser, network, time, storage, and DOM APIs belong.
Hypertea exports a flat ESLint config for application modules that should not touch browser state directly:
import { hyperteaPurity } from "@pairshaped/hypertea/eslint";
export default [
...hyperteaPurity({
files: ["src/islands/**/*.ts", "src/pages/**/*.ts"],
effectFiles: [
"src/islands/runtime.ts",
"src/islands/sortable_list.ts",
],
}),
];The config rejects raw DOM, network, storage, timer, randomness, wall-clock,
listener, and logging APIs in ordinary matched files. This catches a common
hole where update calls an imported helper and that helper performs an
unmanaged effect.
effectFiles is the reviewable exception list. Put real effect adapters there
and explain each application-specific entry next to the config. For a genuinely
local exception, use a one-line ESLint disable with a reason. Do not disable the
rule for a directory just to get a build through.
If an entry module deliberately owns limited browser plumbing, give that file
group a separate hyperteaPurity() entry with an allowedGlobals list. Keep the
list short and explain it beside the config. extraRestrictedSyntax lets an
application append its mutation, assertion, or JSX restrictions without
replacing Hypertea's side-effect selectors in flat ESLint config.
This is a guardrail, not an effect type system. It does not inspect third-party
packages, follow arbitrary call graphs, or prove that every function is pure.
Island entry modules may still own mount and runEffect plumbing when splitting
those into separate files would only add ceremony.
npm run typecheck
npm run lint
npm run test:coverage
npm run build
npm run check
npm run benchnpm run check is the command to run before handing work back.
npm run bench builds Hypertea and compares its DOM patching against Hyperapp in jsdom. Treat the numbers as regression signals and optimization guidance, not browser parity proof.
Server-rendered application islands should use mountIslands():
import {
bindEvents,
defineProgram,
h,
mountIslands,
type VNode,
} from "@pairshaped/hypertea/program"
type Model = {
readonly count: number
}
type Msg = { readonly type: "increment" }
const on = bindEvents<Msg>()
function parseFlags(value: unknown): Model {
if (typeof value !== "object" || value === null || !("count" in value) || typeof value.count !== "number") {
throw new Error("Expected count")
}
return { count: value.count }
}
const counterProgram = defineProgram<Model, Model, Msg, never>({
init: (flags) => [flags, []],
update: (model, message) => {
switch (message.type) {
case "increment":
return [{ count: model.count + 1 }, []]
}
},
view: (model): VNode<Model> =>
h("button", { onClick: on.clicked({ type: "increment" }) }, String(model.count)),
})
mountIslands({
selector: "[data-counter]",
parseFlags,
program: counterProgram,
})update returns [model, effects]. Effectless programs omit runEffect; declaring a real effect type makes the runner required. Invalid or missing flags render a visible mount error and produce a console diagnostic.
mountProgram() and start() return a handle with model(), dispatch(), settle(), and stop(). settle() waits for the currently queued DOM render. It does not wait for effects, timers, or network requests. stop() is idempotent and removes active subscriptions.
Tests provide their own DOM environment and mount the production program through the testing entry point:
import { screen } from "@testing-library/dom"
import userEvent from "@testing-library/user-event"
import { mountProgram } from "@pairshaped/hypertea/testing"
const node = document.createElement("div")
document.body.append(node)
const mounted = mountProgram({
node,
flags: { count: 0 },
program: counterProgram,
})
const user = userEvent.setup()
await mounted.settle()
await user.click(screen.getByRole("button", { name: "0" }))
await mounted.settle()
expect(mounted.model().count).toBe(1)
expect(screen.getByRole("button", { name: "1" })).toBeDefined()
mounted.stop()Hypertea does not start JSDOM and does not provide a query or assertion language. Use Vitest, Testing Library, and user-event in the host application. The automated suite is browserless. Check layout, pointer geometry, native drag behavior, and browser quirks manually when those paths change.
The testing mount captures effects instead of running the production interpreter. effects() returns a frozen snapshot of pending { effect, dispatch } values. takeEffect(index) removes one pending effect, which lets a test complete requests in any order through normal messages. Unresolved effects do not delay settle(), and their dispatchers cannot update a stopped program.
const mounted = mountProgram({ node, flags: searchFlags, program: searchProgram })
mounted.dispatch({ type: "setQuery", value: "club" })
const pending = mounted.takeEffect()
if (pending?.effect.type !== "search") throw new Error("Expected search effect")
expect(pending.effect).toEqual({ type: "search", query: "club" })
pending.dispatch({
type: "suggestionsLoaded",
query: pending.effect.query,
suggestions: [{ id: 1, name: "Club league" }],
})
await mounted.settle()The lower-level app() API remains available from the package root for runtime internals and benchmarks. Application code should import from @pairshaped/hypertea/program, which exposes the typed program APIs without low-level dispatch or magic no-effect values.
- No whole-app router.
- No server runtime.
- No ORM, RPC, or transport layer.
- No large component system.
- No direct replacement for Elm.