1 Repo
Utilities for integrating functional types like Either or Task into web server request handlers.
Distinct from Low-Level Handler Integrations: The candidates focus on low-level networking or specific cloud providers, while this is about functional type integration in general web handlers.
Explore 1 awesome GitHub repository matching web development · Functional Web Handler Integrations. Refine with filters or upvote what's useful.
fp-ts is a TypeScript library that brings pure functional programming patterns to the language through algebraic data types, type class abstractions, and composable combinators. It provides foundational data types like Option for optional values, Either for typed error handling, and Task for lazy asynchronous computations, all designed to make invalid states unrepresentable and side effects explicit. The library is built on category theory concepts, offering type classes such as Functor, Applicative, Monad, Semigroup, and Monoid with lawful instances for common data structures. The library di
Integrates functional types like Either and Task into web server request handlers.