awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 Repos

Awesome GitHub RepositoriesRelational Resource Mapping

Mechanisms for resolving and embedding related data entities within a single API response.

Distinct from Data Resource Management: Distinct from Data Resource Management by focusing on the relationship resolution (embedding/expanding) rather than basic CRUD operations.

Explore 4 awesome GitHub repositories matching data & databases · Relational Resource Mapping. Refine with filters or upvote what's useful.

Awesome Relational Resource Mapping GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • typicode/json-serverAvatar von typicode

    typicode/json-server

    75,614Auf GitHub ansehen↗

    json-server is a development toolset used to simulate a full REST API from a JSON file. It functions as a customizable mock API server that allows for the simulation of CRUD operations and resource relationships without the need to write backend code. The project enables rapid prototyping by generating a fake backend that persists data changes back to a local JSON file. It distinguishes itself by providing a static asset file server to deliver local documents, images, and stylesheets alongside the mock API endpoints. The server includes capabilities for data querying, such as parameter-based

    Allows fetching related data by embedding child resources or expanding parent references in a single request.

    JavaScriptapifakefrontend
    Auf GitHub ansehen↗75,614
  • json-api/json-apiAvatar von json-api

    json-api/json-api

    7,708Auf GitHub ansehen↗

    JSON API is a set of industry standards for RESTful APIs that defines uniform protocols for resource serialization, error responses, and query parameters. It provides a specification for request and response payloads in JSON-based APIs to ensure consistency across endpoints. The specification focuses on reducing network requests through a structured resource serialization format and a standardized mechanism for embedding related resources into a single response. It utilizes a custom JSON media type for content negotiation and supports the definition of custom profiles to provide specialized i

    Enables bundling linked data into a single response when explicitly requested via query parameters to minimize network requests.

    CSS
    Auf GitHub ansehen↗7,708
  • codeigniter4/codeigniter4Avatar von codeigniter4

    codeigniter4/CodeIgniter4

    5,924Auf GitHub ansehen↗

    CodeIgniter is a PHP web framework built on the Model-View-Controller pattern, designed for building full-stack web applications. It provides a lightweight toolkit with minimal configuration, organizing application logic into controllers, models, and views for clean separation of concerns. The framework includes a fluent query builder for constructing SQL statements programmatically, PSR-4 autoloading with namespace mapping, and a service-based dependency injection container for managing shared class instances. The framework distinguishes itself through its comprehensive set of built-in tools

    CodeIgniter loads and appends related data when the client specifies an include query parameter, using dedicated methods on the transformer.

    PHPcodeignitercodeigniter4framework-php
    Auf GitHub ansehen↗5,924
  • typicode/jsonplaceholderAvatar von typicode

    typicode/jsonplaceholder

    5,244Auf GitHub ansehen↗

    JSONPlaceholder ist ein REST-API-Mock-Server und JSON-Mocking-Dienst, der eine gehostete Sandbox für die Frontend-Entwicklung bereitstellt. Er fungiert als Fake-Backend, das vordefinierte JSON-Antworten zurückgibt, um eine REST-API für Entwicklung und Tests zu simulieren. Der Dienst unterstützt Cross-Origin Resource Sharing (CORS), wodurch API-Integrationen von verschiedenen Browser-Domains aus getestet werden können. Er ermöglicht die Simulation von CRUD-Operationen und den Abruf von Mock-Daten, ohne eine Live-Datenbank zu benötigen. Das System bildet URL-Muster auf einen statischen JSON-basierten Datenspeicher ab und verarbeitet Requests zustandslos. Es enthält Funktionen für Query-Parameter-Filterung und verschachteltes Ressourcen-Mapping, um One-to-Many-relationale Datenstrukturen zu simulieren.

    Resolves relational data by linking child resource collections to parent entities via URL paths.

    HTMLapifakeonline
    Auf GitHub ansehen↗5,244
  1. Home
  2. Data & Databases
  3. Data Resource Management
  4. Relational Resource Mapping

Unter-Tags erkunden

  • Client-Requested Resource InclusionsMechanisms for embedding related data in API responses only when explicitly requested via query parameters. **Distinct from Relational Resource Mapping:** Distinct from Relational Resource Mapping: focuses on conditional inclusion triggered by client query parameters, not automatic embedding.