Skip to content

Kody is live

Watch the launch video — what Kody is, and why it exists.

← Public packages

@kentcdodds/package-app-kit

Design tokens, PWA install/update, About/version, cache helpers, and optional realtime notes sync for Kody package apps.

src/client/index.ts

20 lines · 699 B · TypeScript
/**
 * Platform browser client entry (kody.app.client) — real ESM module (source of truth).
 * Bundled by Kody on publish when kody.app.client is set; also the interim /client/boot.js source.
 */
import { bootToast } from './toast.ts'
import { bootInstall } from './install.ts'
import { bootDoubleCheck } from './double-check.ts'
import { bootServiceWorkerRegistration } from './sw-register.ts'
import { bootUpdateCheck } from './update-check.ts'
import { bootRouter } from './router.ts'
import { bootNotesIsland, bootToastDemo } from './notes-island.ts'

bootToast()
bootServiceWorkerRegistration()
bootInstall()
bootDoubleCheck()
bootUpdateCheck()
bootRouter()
bootToastDemo()
bootNotesIsland()