2 repos
Modular architectures that process incoming web requests through a sequential chain of interceptors.
Explore 2 awesome GitHub repositories matching web development · Middleware-Oriented Frameworks. Refine with filters or upvote what's useful.
Gin is a web framework designed for building high-performance web services and APIs. It functions as a middleware-oriented engine that processes incoming HTTP requests through a sequential chain of handlers, allowing for the modular management of cross-cutting concerns such as authentication and logging. The framework
Executes incoming network requests through a sequential chain of interceptors to allow flexible, modular request processing.
Express is a minimalist web server framework that provides a foundational runtime environment for building backend web APIs and applications. It operates through a central application object that orchestrates the entire request-response lifecycle, allowing developers to define routes, manage server settings, and proces
Chains functions that intercept and process incoming HTTP requests before they reach final route handlers.