2 repos
Components for mapping incoming request paths to specific handlers with support for parameters and middleware.
Distinguishing note: Focuses on the path-matching and endpoint organization logic, distinct from the broader web framework.
Explore 2 awesome GitHub repositories matching web development · Routing Engines. Refine with filters or upvote what's useful.
Fiber is a high-performance web framework designed for building scalable HTTP services with minimal memory overhead. It provides a comprehensive runtime environment for managing the full request lifecycle, utilizing an optimized radix tree for high-speed route matching and an object pooling system to reduce garbage collection pressure during traffic processing. The framework distinguishes itself through its multi-process architecture, which supports prefork socket reuse to distribute incoming traffic across all available CPU cores. It offers a modular approach to application development, feat
Organizes URL paths into a compressed tree structure to enable high-speed path lookup and dynamic parameter extraction.
This project is a comprehensive server-side web framework designed for building scalable web applications and services. It provides a structured, component-based architecture that integrates a dependency injection container to manage service lifecycles and promote loose coupling across the software stack. The framework enables the creation of interactive client-side interfaces through a component-based model that synchronizes state directly with the browser. The platform distinguishes itself through a highly configurable middleware-based request pipeline and an attribute-based routing engine
Maps incoming web requests to specific controller actions or page handlers by evaluating metadata decorators attached directly to the application code.