awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

19 个仓库

Awesome GitHub RepositoriesRESTful API Frameworks

Tools and libraries designed for building and managing RESTful web services and APIs.

Distinguishing note: None available; no candidates provided.

Explore 19 awesome GitHub repositories matching web development · RESTful API Frameworks. Refine with filters or upvote what's useful.

Awesome RESTful API Frameworks GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • tiangolo/fastapitiangolo 的头像

    tiangolo/fastapi

    99,301在 GitHub 上查看↗

    FastAPI is a high-performance Python web framework designed for building REST APIs. It operates as an ASGI web framework, providing a system to create structured HTTP endpoints that automatically serialize data and validate request parameters. The framework utilizes Python type hints to drive data validation and serialization, automatically generating machine-readable OpenAPI and JSON Schema specifications. This process enables the automatic creation of interactive, browser-based API documentation where endpoints can be tested directly. The project includes a dependency injection system for

    Implements a system for creating structured HTTP endpoints with automatic data serialization and request parameter validation.

    Python
    在 GitHub 上查看↗99,301
  • gofiber/fibergofiber 的头像

    gofiber/fiber

    39,849在 GitHub 上查看↗

    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

    Creating structured web interfaces that map incoming request data to application logic while enforcing validation and consistent error handling.

    Goexpressexpressjsfast
    在 GitHub 上查看↗39,849
  • gorilla/muxgorilla 的头像

    gorilla/mux

    21,832在 GitHub 上查看↗

    This project is a request router and web framework for the Go programming language. It provides a toolkit for matching incoming HTTP network requests to specific handler functions by evaluating criteria such as URL paths, request methods, headers, and hostnames. The framework distinguishes itself through its flexible matching capabilities, which include support for regular expressions and dynamic variable extraction from URL segments. It allows developers to organize routes into logical hierarchies, share common path prefixes, and maintain a central registry of named routes to facilitate prog

    Provides a toolkit for building RESTful web services with routing and middleware support.

    Gogogolanggorilla
    在 GitHub 上查看↗21,832
  • gofr-dev/gofrgofr-dev 的头像

    gofr-dev/gofr

    21,321在 GitHub 上查看↗

    Gofr is a comprehensive framework for building production-ready microservices in Go. It provides a unified toolkit for developing RESTful APIs and gRPC services, offering built-in support for observability, database management, and distributed system communication. The framework distinguishes itself through its focus on developer productivity and system resilience. It automates common backend tasks such as CRUD handler generation, schema-driven code creation, and database migration orchestration, while preventing race conditions in clustered environments. To maintain stability, it includes in

    A backend engine that automates routing, documentation generation, and CRUD handler creation to accelerate the development of web-based microservices.

    Goframeworkgogo-framework
    在 GitHub 上查看↗21,321
  • julienschmidt/httprouterjulienschmidt 的头像

    julienschmidt/httprouter

    17,121在 GitHub 上查看↗

    httprouter is a high-performance HTTP request router for Go that maps incoming network requests to specific handler functions using a radix tree. It functions as a request dispatcher and path parameter parser, organizing URL paths in a tree structure to ensure efficient lookups. The router specializes in capturing dynamic segments and catch-all wildcards from URL paths to pass directly into request handlers. It implements method-specific routing and automatically manages responses for unsupported HTTP methods. The library covers broader capabilities including request normalization through tr

    Maps dynamic URL segments and named parameters to controllers for building scalable REST API endpoints.

    Gogogolanghttp
    在 GitHub 上查看↗17,121
  • strongloop/loopbackstrongloop 的头像

    strongloop/loopback

    13,159在 GitHub 上查看↗

    LoopBack is a Node.js API framework used to build RESTful services and backend applications. It functions as a model-driven API generator that automatically maps predefined data models to network endpoints to create standardized web interfaces. The project features a database abstraction layer that unifies access across diverse SQL databases, NoSQL stores, and remote data sources. It includes a backend application scaffolder using command-line generators to automate the creation of project structures and data connectors. Additionally, it provides an API authentication system to manage applica

    Provides a specialized framework for building and managing RESTful web services and APIs.

    JavaScript
    在 GitHub 上查看↗13,159
  • playframework/playframeworkplayframework 的头像

    playframework/playframework

    12,620在 GitHub 上查看↗

    Play is a full-stack reactive web framework for Java and Scala. It provides a comprehensive development platform for building scalable web applications and RESTful APIs using a stateless and non-blocking architecture designed for high concurrency. The framework emphasizes high-velocity development through dynamic code reloading, which allows developers to update applications and verify changes without performing a full restart. Its capability surface covers the construction of JSON-based web endpoints, server-side logic for the JVM, and the implementation of scalable web architectures.

    Offers a specialized toolset for designing and deploying scalable RESTful API frameworks.

    Scalaframeworkhacktoberfestjava
    在 GitHub 上查看↗12,620
  • aws/chaliceaws 的头像

    aws/chalice

    11,062在 GitHub 上查看↗

    Chalice is a framework for building and deploying serverless applications and REST APIs on AWS Lambda using Python. It functions as an infrastructure-as-code generator, mapping application logic and routing definitions directly to cloud compute resources while automating the provisioning and management of the underlying environment. The framework distinguishes itself by analyzing source code to automatically construct the minimum necessary security permissions, ensuring least-privilege access for all deployed functions. It supports modular development through blueprint-based organization and

    Provides a framework for defining RESTful HTTP endpoints, managing URL parameters, and handling custom domain configurations.

    Pythonawsaws-apigatewayaws-lambda
    在 GitHub 上查看↗11,062
  • restify/node-restifyrestify 的头像

    restify/node-restify

    10,686在 GitHub 上查看↗

    Restify is a Node.js web framework designed for building scalable RESTful web services and APIs. It provides a server-side environment for creating HTTP network services with integrated routing and request handling. The framework utilizes a middleware-based architecture to process incoming requests and manage responses. This approach supports the construction of web interfaces that follow standard architectural principles to deliver data to clients. The system covers a broad range of backend engineering capabilities, including route-based request dispatching, schema-based request validation,

    Serves as a comprehensive framework for building and managing scalable RESTful web services and APIs.

    JavaScript
    在 GitHub 上查看↗10,686
  • vitalik/django-ninjavitalik 的头像

    vitalik/django-ninja

    9,095在 GitHub 上查看↗

    Django Ninja is a high-performance framework for building type-safe REST APIs using Django. It functions as an OpenAPI API framework and a type-safe wrapper that utilizes Python type hints to handle request validation and response serialization. The project distinguishes itself by integrating Pydantic-based data modeling to convert JSON inputs into strongly typed Python objects. It automatically generates OpenAPI schemas and interactive documentation pages directly from defined endpoint signatures. The framework supports asynchronous request processing to handle concurrent tasks. It employs

    Provides a high-performance framework for building and managing RESTful web services using Django.

    Pythondjangodjango-ninjaopenapi
    在 GitHub 上查看↗9,095
  • litestar-org/litestarlitestar-org 的头像

    litestar-org/litestar

    8,302在 GitHub 上查看↗

    Litestar is a high-performance Python ASGI web framework designed for building asynchronous APIs and web services. It functions as a type-safe toolkit that leverages Python type hints to provide automatic request validation and response serialization, while natively generating interactive API documentation based on the OpenAPI specification. The framework is distinguished by its integrated dependency injection system, which manages shared resources and resolves complex nested service chains directly within request handlers. It further organizes API development through class-based controllers

    Offers tools for building RESTful web services, including class-based controllers to organize endpoints and resources.

    Pythonapiasgiasyncio
    在 GitHub 上查看↗8,302
  • eddycjy/go-gin-exampleeddycjy 的头像

    eddycjy/go-gin-example

    7,193在 GitHub 上查看↗

    This project is a reference implementation and boilerplate for building RESTful services using the Gin web framework in Go. It provides a structured backend architecture featuring modular routing and middleware to serve as a template for Go web applications. The project distinguishes itself through a comprehensive set of integrated systems, including a security layer for user authentication and private endpoint protection using JSON Web Tokens. It also implements a high-speed memory storage layer via Redis to cache frequent database queries and a containerized runtime environment for consiste

    Serves as a reference implementation and boilerplate for building RESTful services using the Gin framework.

    Goapiendlessgin
    在 GitHub 上查看↗7,193
  • flask-restful/flask-restfulflask-restful 的头像

    flask-restful/flask-restful

    6,914在 GitHub 上查看↗

    Flask-restful is a toolkit for building structured web services using Flask. It functions as a resource-based routing library and a RESTful web service toolkit that organizes endpoints into resource classes. The framework implements a system that maps HTTP methods to specific class methods to handle requests and responses. It utilizes a central registry for resource registration to automate route creation and uses decorators for method dispatch and resource access control. The project covers request and response management through declarative request parsing, argument validation, and data ty

    Provides a comprehensive toolkit for building RESTful web services using Flask as the underlying framework.

    Python
    在 GitHub 上查看↗6,914
  • rauchg/slackinrauchg 的头像

    rauchg/slackin

    6,499在 GitHub 上查看↗

    Public Slack organizations made easy

    Serves JSON endpoints and web pages using the Express.js framework for routing and request processing.

    JavaScript
    在 GitHub 上查看↗6,499
  • springside/springside4springside 的头像

    springside/springside4

    5,652在 GitHub 上查看↗

    SpringSide 4 is an enterprise Java reference architecture and utility library built on the Spring Framework. It provides a pragmatic, best-practice application stack for building RESTful web services, web applications, and data access layers, along with a curated collection of high-performance utility classes for common operations like text, date, collection, reflection, concurrency, and I/O handling. The project distinguishes itself by combining a complete reference application scaffold with production-oriented infrastructure. It includes a JPA-based data access layer that automatically tran

    Provides a framework for building REST APIs with JSON and XML serialization.

    Java
    在 GitHub 上查看↗5,652
  • emicklei/go-restfulemicklei 的头像

    emicklei/go-restful

    5,111在 GitHub 上查看↗

    go-restful 是一个用于在 Go 中构建 RESTful Web 服务的框架。它作为一个管理 API 端点的工具包,提供了一个请求路由器,使用路径参数和自定义 URL 模式将传入的 HTTP 请求映射到处理函数。 该框架包括一个数据转换层,将 Go 结构转换为 JSON 或 XML 格式以用于请求和响应体。它还提供了一个将相关 Web 服务组织到容器中的系统,以管理端点前缀和共享配置。 该项目通过用于验证和身份验证的中间件过滤器,以及跨域资源共享(CORS)头的管理来涵盖请求生命周期管理。其他功能包括使用 gzip 或 deflate 的负载压缩,以及用于返回标准化错误响应的 panic 恢复中间件。

    Implements a comprehensive framework for building and managing RESTful web services in Go.

    Go
    在 GitHub 上查看↗5,111
  • linhaojun857/auroralinhaojun857 的头像

    linhaojun857/aurora

    4,643在 GitHub 上查看↗

    Aurora 是一个自托管的个人博客平台和 RESTful 内容管理系统。它提供了一个用于发布和管理文章的专用管理仪表板,后端使用 Spring Boot,前端使用 Vue.js。 该系统采用解耦的客户端-服务器架构,将数据存储与展示层分离。这使得响应式 Web 界面能够通过 REST API 交付和浏览博客文章。 该平台涵盖了端到端的内容发布工作流,包括文章的创建、编辑和分发。它通过集成的后端存储和基于组件的前端来管理个人书面内容。

    Functions as a headless CMS that exposes content via a REST API, decoupling storage from presentation.

    Javaaxiosblogdocker
    在 GitHub 上查看↗4,643
  • apostrophecms/apostropheapostrophecms 的头像

    apostrophecms/apostrophe

    4,524在 GitHub 上查看↗

    Apostrophe is an open-source Node.js headless content management system that delivers structured content through REST APIs while providing a visual in-context page editor for live editing. It is built on a module-based plugin architecture that extends CMS functionality through reusable modules, each encapsulating logic, configuration, and templates. The system uses schema-driven content modeling to define data structures and validation rules through configurable schemas and custom field types, with all content stored as flexible JSON-like documents in MongoDB. The platform distinguishes itsel

    Exposes structured content as JSON through automatically generated REST endpoints, decoupling the CMS from any frontend framework.

    JavaScriptapostrophecmscms-framework
    在 GitHub 上查看↗4,524
  • alchemycms/alchemy_cmsAlchemyCMS 的头像

    AlchemyCMS/alchemy_cms

    896在 GitHub 上查看↗

    Alchemy CMS is a content management system built on the Ruby on Rails framework that provides a modular environment for constructing websites. It utilizes a component-based architecture to organize content into reusable blocks, allowing for consistent design and structure across pages while supporting both traditional server-side template rendering and headless content delivery. The platform distinguishes itself by offering a dual-delivery approach, exposing structured content through standardized application programming interfaces to support decoupled front-end architectures. It includes an

    Exposes structured content via automatically generated REST endpoints for decoupled front-end architectures.

    Rubyadminalchemy-cmscms
    在 GitHub 上查看↗896
  1. Home
  2. Web Development
  3. RESTful API Frameworks

探索子标签

  • Headless REST API FrameworksFrameworks that expose structured content as JSON through automatically generated REST endpoints, decoupling the CMS from any frontend framework. **Distinct from RESTful API Frameworks:** Distinct from RESTful API Frameworks: specifically designed for headless CMS content delivery with automatic route generation from content models.
  • Reference BoilerplatesStarter implementations and templates for RESTful API services. **Distinct from RESTful API Frameworks:** Provides a concrete reference implementation/boilerplate rather than just a general-purpose framework.