Skip to content

Latest commit

 

History

History
executable file
·
27 lines (18 loc) · 625 Bytes

File metadata and controls

executable file
·
27 lines (18 loc) · 625 Bytes

offline-auto

Your web app works offline. Three lines, zero config, auto request queue.

Commands

npm run build # compile TypeScript npm test # run all tests (Vitest) npm run typecheck # type-check without emit (tsc --noEmit)

Stack

  • TypeScript (ESM only)
  • Vitest for testing
  • Zero runtime dependencies

Code Style

  • ESM imports/exports only. No CommonJS
  • Strict TypeScript (strict: true)
  • No default exports — use named exports

Boundaries

  • Do not modify .env or credentials
  • Do not run npm publish without maintainer approval
  • Do not add runtime dependencies without discussion