An educational pure functional programming library in TypeScript
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update main README examples section for new structure

+4 -7
+4 -7
README.md
··· 191 191 192 192 ## Examples 193 193 194 - See the [`examples/`](./examples) directory for real-world usage: 194 + See the [`examples/`](./examples) directory for side-by-side comparisons with vanilla TypeScript: 195 195 196 - - **[http-client.ts](./examples/http-client.ts)** — Resilient HTTP client with typed errors, retries, and timeouts 197 - - **[workflow-engine.ts](./examples/workflow-engine.ts)** — Order processing pipeline with state machines 198 - - **[reactive-dom.ts](./examples/reactive-dom.ts)** — DOM event handling with cancellation 199 - - **[parallel-scraper.ts](./examples/parallel-scraper.ts)** — Concurrent web scraper with rate limiting 200 - - **[task-queue.ts](./examples/task-queue.ts)** — Background job processor with priorities 201 - - **[game-loop.ts](./examples/game-loop.ts)** — Game loop with typed units and state 196 + - **[http-client](./examples/http-client/)** — Retry, timeout, and typed errors 197 + - **[workflow-engine](./examples/workflow-engine/)** — Branded types and typestate patterns 198 + - **[task-queue](./examples/task-queue/)** — Fiber concurrency and dependency injection 202 199 203 200 ## Philosophy 204 201