2 مستودعات
Techniques for building complex APIs by nesting smaller API definitions or modular services.
Distinct from Component Composition: Candidates focus on distributed workers or UI components, not the structural nesting of REST API definitions.
Explore 2 awesome GitHub repositories matching web development · Modular API Composition. Refine with filters or upvote what's useful.
Grape is a RESTful web service framework for Ruby designed for building structured APIs. It provides a declarative syntax for routing and parameter validation, allowing developers to map HTTP verbs to logic through a domain specific language. The framework is distinguished by its built-in support for service versioning, which can be managed via URL paths, custom headers, or request parameters. It also features a modular architecture that allows large services to be constructed by nesting smaller API definitions. The project covers comprehensive API lifecycle capabilities, including schema-dr
Provides a modular architecture allowing large services to be constructed by nesting smaller API definitions.
Hug is a Python API framework used for building web services by mapping functions to HTTP endpoints via decorators and type annotations. It functions as a type-based validator that automatically converts and validates incoming request data based on Python type hints and serves as a WSGI-compliant web framework for deployment on production servers. The project is distinguished by its ability to automatically generate API specifications and user-facing documentation derived from function signatures. It further extends the utility of internal logic by exposing functions as terminal commands thro
Allows organizing large services by mounting separate functional modules to specific base URL paths.