awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
emicklei avatar

emicklei/go-restful

0
View on GitHub↗

Go Restful

go-restful es un framework para construir servicios web RESTful en Go. Funciona como un kit de herramientas para gestionar endpoints de API, proporcionando un enrutador de peticiones que mapea las peticiones HTTP entrantes a funciones manejadoras utilizando parámetros de ruta y patrones de URL personalizados.

El framework incluye una capa de conversión de datos que transforma estructuras de Go a formatos JSON o XML para cuerpos de petición y respuesta. También proporciona un sistema para organizar servicios web relacionados en contenedores para gestionar el prefijado de endpoints y la configuración compartida.

El proyecto cubre la gestión del ciclo de vida de las peticiones mediante filtros de middleware para validación y autenticación, así como la gestión de cabeceras de intercambio de recursos de origen cruzado (CORS). Las capacidades adicionales incluyen compresión de carga útil mediante gzip o deflate y middleware de recuperación de pánico para devolver respuestas de error estandarizadas.

Búsqueda con IA

Explora más repositorios increíbles

Describe lo que necesitas en lenguaje sencillo: la IA clasifica miles de proyectos open-source curados por relevancia.

Start searching with AI

Features

  • RESTful API Development - Provides a framework for building scalable web services following REST architectural patterns.
  • API Payload Serializers - Transforms Go structures into JSON or XML formats for API request and response bodies.
  • Data Serialization - Encodes and serializes Go data structures into JSON or XML for client-server transmission.
  • Payload Serialization - Provides bidirectional serialization of request and response bodies into JSON or XML formats.
  • HTTP Request Routers - Ships a routing system that maps network requests to specific application handlers.
  • Request Routing - Provides a dedicated routing system for mapping HTTP requests to Go handler functions.
  • HTTP Request Routing - Maps incoming HTTP requests to handler functions using path parameters and URL patterns.
  • Request Interception Middleware - Executes a chain of middleware filters to process HTTP traffic before it reaches the handler.
  • Request Middleware - Implements middleware filters to intercept, validate, and modify HTTP requests and responses.
  • HTTP Middleware Pipelines - Provides HTTP middleware pipelines for intercepting and transforming request-response flows.
  • RESTful API Frameworks - Implements a comprehensive framework for building and managing RESTful web services in Go.
  • RESTful Services - Provides a toolkit for managing RESTful endpoints, CORS, and payload compression.
  • Pattern-Based Route Mapping - Routes requests to specific functions by matching URL paths against templates and parameters.
  • Pluggable Serializers - Supports interchangeable serialization strategies via registered readers and writers for different data formats.
  • Endpoint Grouping - Allows organizing related web services into containers for logical structure and endpoint prefixing.
  • Route Grouping - Organizes API endpoints into logical hierarchies with shared configuration and middleware.
  • API Frameworks - Declarative framework for building RESTful APIs.
  • Enrutamiento y Middleware - Package for building REST-style web services.
  • Server Frameworks - Declarative framework for building RESTful APIs in Go.
5,111 estrellas·682 forks·Go·MIT·14 vistas

Historial de estrellas

Gráfico del historial de estrellas de emicklei/go-restfulGráfico del historial de estrellas de emicklei/go-restful

Preguntas frecuentes

¿Qué hace emicklei/go-restful?

go-restful es un framework para construir servicios web RESTful en Go. Funciona como un kit de herramientas para gestionar endpoints de API, proporcionando un enrutador de peticiones que mapea las peticiones HTTP entrantes a funciones manejadoras utilizando parámetros de ruta y patrones de URL personalizados.

¿Cuáles son las características principales de emicklei/go-restful?

Las características principales de emicklei/go-restful son: RESTful API Development, API Payload Serializers, Data Serialization, Payload Serialization, HTTP Request Routers, Request Routing, HTTP Request Routing, Request Interception Middleware.

¿Qué alternativas de código abierto existen para emicklei/go-restful?

Las alternativas de código abierto para emicklei/go-restful incluyen: salvo-rs/salvo — Salvo is a comprehensive Rust web framework for building asynchronous HTTP servers and web applications. It features a… restify/node-restify — Restify is a Node.js web framework designed for building scalable RESTful web services and APIs. It provides a… gorilla/mux — This project is a request router and web framework for the Go programming language. It provides a toolkit for matching… gin-gonic/examples — This repository is a collection of implementation patterns, tutorial code, and practical examples for building web… flask-restful/flask-restful — Flask-restful is a toolkit for building structured web services using Flask. It functions as a resource-based routing… falconry/falcon — Falcon is a minimalist Python web API framework and high-performance microservices framework. It serves as a…

Alternativas open-source a Go Restful

Proyectos open-source similares, clasificados según cuántas características comparten con Go Restful.
  • salvo-rs/salvoAvatar de salvo-rs

    salvo-rs/salvo

    4,376Ver en GitHub↗

    Salvo is a comprehensive Rust web framework for building asynchronous HTTP servers and web applications. It features a hierarchical web router that uses a tree-based structure to map requests to handlers and an asynchronous middleware pipeline based on the onion model for request and response pre- and post-processing. The framework is distinguished by its native support for modern network protocols, including a QUIC-based HTTP/3 implementation alongside HTTP/1 and HTTP/2. It includes an integrated OpenAPI documentation generator that extracts schemas directly from handler signatures to produc

    Rustasyncframeworkhttp-server
    Ver en GitHub↗4,376
  • restify/node-restifyAvatar de restify

    restify/node-restify

    10,686Ver en 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,

    JavaScript
    Ver en GitHub↗10,686
  • gorilla/muxAvatar de gorilla

    gorilla/mux

    21,832Ver en 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

    Gogogolanggorilla
    Ver en GitHub↗21,832
  • gin-gonic/examplesAvatar de gin-gonic

    gin-gonic/examples

    4,537Ver en GitHub↗

    This repository is a collection of implementation patterns, tutorial code, and practical examples for building web applications with the Gin framework in Go. It serves as a guide for learning how to structure Go web servers, specifically focusing on mapping URL paths to handler functions and managing request flow. The project provides demonstrations of middleware implementation for tasks such as authentication, logging, and rate limiting. It also includes reference examples for developing REST APIs, with a focus on structuring data and sending JSON responses to clients.

    Gogingin-gonicgo
    Ver en GitHub↗4,537
Ver las 30 alternativas a Go Restful→