jaeswift-website/api/data/awesomelist/gofiber--awesome-fiber.json

1 line
No EOL
27 KiB
JSON

{"slug": "gofiber--awesome-fiber", "title": "Fiber", "description": "\u2728 A curated list of awesome Fiber middlewares, boilerplates, recipes, articles and tools.", "github_url": "https://github.com/gofiber/awesome-fiber", "stars": "796", "tag": "Back-End Development", "entry_count": 141, "subcategory_count": 6, "subcategories": [{"name": "General", "parent": "", "entries": [{"name": "\u2699\ufe0f Middlewares", "url": "#%EF%B8%8F-middlewares", "description": ""}, {"name": "\ud83d\udea7 Boilerplates", "url": "#-boilerplates", "description": ""}, {"name": "\ud83d\udcc1 Recipes", "url": "#-recipes", "description": ""}, {"name": "\ud83d\udee0\ufe0f Tools", "url": "#%EF%B8%8F-tools", "description": ""}, {"name": "\ud83d\udcd6 Articles", "url": "#-articles", "description": ""}, {"name": "\ud83d\udcfa Videos", "url": "#-videos", "description": ""}, {"name": "\ud83e\udd16 Benchmarks", "url": "#-benchmarks", "description": ""}]}, {"name": "\ud83e\uddec Core", "parent": "\u2699\ufe0f Middlewares", "entries": [{"name": "Adaptor", "url": "https://github.com/gofiber/fiber/tree/main/middleware/adaptor", "description": "Converter for net/http handlers to/from Fiber request handlers.", "stars": "39k"}, {"name": "BasicAuth", "url": "https://github.com/gofiber/fiber/tree/main/middleware/basicauth", "description": "Basic auth middleware provides an HTTP basic authentication. It calls the next handler for valid credentials and 401 Unauthorized for missing or invalid credentials.", "stars": "39k"}, {"name": "Cache", "url": "https://github.com/gofiber/fiber/tree/main/middleware/cache", "description": "Intercept and cache responses.", "stars": "39k"}, {"name": "Compress", "url": "https://github.com/gofiber/fiber/tree/main/middleware/compress", "description": "Compression middleware for Fiber, it supports `deflate`, `gzip` and `brotli` by default.", "stars": "39k"}, {"name": "CORS", "url": "https://github.com/gofiber/fiber/tree/main/middleware/cors", "description": "Enable cross-origin resource sharing (CORS) with various options.", "stars": "39k"}, {"name": "CSRF", "url": "https://github.com/gofiber/fiber/tree/main/middleware/csrf", "description": "Protect from CSRF exploits.", "stars": "39k"}, {"name": "Earlydata", "url": "https://github.com/gofiber/fiber/tree/main/middleware/earlydata", "description": "Early data support for Fiber.", "stars": "39k"}, {"name": "Encrypt Cookie", "url": "https://github.com/gofiber/fiber/tree/main/middleware/encryptcookie", "description": "Encrypt middleware which encrypts cookie values.", "stars": "39k"}, {"name": "EnvVar", "url": "https://github.com/gofiber/fiber/tree/main/middleware/envvar", "description": "Expose environment variables with providing an optional config.", "stars": "39k"}, {"name": "ETag", "url": "https://github.com/gofiber/fiber/tree/main/middleware/etag", "description": "Lets caches be more efficient and save bandwidth, as a web server does not need to resend a full response if the content has not changed.", "stars": "39k"}, {"name": "Expvar", "url": "https://github.com/gofiber/fiber/tree/main/middleware/expvar", "description": "Serves runtime exposed variants in JSON format via its HTTP server.", "stars": "39k"}, {"name": "Favicon", "url": "https://github.com/gofiber/fiber/tree/main/middleware/favicon", "description": "Ignore favicon from logs or serve from memory if a file path is provided.", "stars": "39k"}, {"name": "Healthcheck", "url": "https://github.com/gofiber/fiber/tree/main/middleware/healthcheck", "description": "Adds health-check endpoints for readiness and liveness probes.", "stars": "39k"}, {"name": "Helmet", "url": "https://github.com/gofiber/fiber/tree/main/middleware/helmet", "description": "Helps secure your apps by setting various HTTP headers.", "stars": "39k"}, {"name": "Idempotency", "url": "https://github.com/gofiber/fiber/tree/main/middleware/idempotency", "description": "Enables fault-tolerant APIs when duplicate requests occur.", "stars": "39k"}, {"name": "Keyauth", "url": "https://github.com/gofiber/fiber/tree/main/middleware/keyauth", "description": "Key auth middleware provides a key based authentication.", "stars": "39k"}, {"name": "Limiter", "url": "https://github.com/gofiber/fiber/tree/main/middleware/limiter", "description": "Rate-limiting middleware. Use to limit repeated requests to public APIs and/or endpoints such as password reset.", "stars": "39k"}, {"name": "Logger", "url": "https://github.com/gofiber/fiber/tree/main/middleware/logger", "description": "HTTP request/response logger.", "stars": "39k"}, {"name": "Pprof", "url": "https://github.com/gofiber/fiber/tree/main/middleware/pprof", "description": "Serves runtime profiling data in the format expected by the pprof visualization tool.", "stars": "39k"}, {"name": "Proxy", "url": "https://github.com/gofiber/fiber/tree/main/middleware/proxy", "description": "Allows you to proxy requests to a multiple servers.", "stars": "39k"}, {"name": "Recover", "url": "https://github.com/gofiber/fiber/tree/main/middleware/recover", "description": "Recovers from panics anywhere in the stack chain and hands control to the centralized ErrorHandler.", "stars": "39k"}, {"name": "Redirect", "url": "https://github.com/gofiber/fiber/tree/main/middleware/redirect", "description": "Handles HTTP redirects in Fiber.", "stars": "39k"}, {"name": "RequestID", "url": "https://github.com/gofiber/fiber/tree/main/middleware/requestid", "description": "Adds a requestid to every request.", "stars": "39k"}, {"name": "Responsetime", "url": "https://github.com/gofiber/fiber/tree/main/middleware/responsetime", "description": "Adds an `X-Response-Time` header to responses.", "stars": "39k"}, {"name": "Rewrite", "url": "https://github.com/gofiber/fiber/tree/main/middleware/rewrite", "description": "Rewrites the URL path based on provided rules for backward compatibility or cleaner links.", "stars": "39k"}, {"name": "Session", "url": "https://github.com/gofiber/fiber/tree/main/middleware/session", "description": "Provides session management. NOTE: This middleware uses our Storage package.", "stars": "39k"}, {"name": "Skip", "url": "https://github.com/gofiber/fiber/tree/main/middleware/skip", "description": "Skips a wrapped handler when a predicate is true.", "stars": "39k"}, {"name": "Static", "url": "https://github.com/gofiber/fiber/tree/main/middleware/static", "description": "Serves static files from a local or custom file system.", "stars": "39k"}, {"name": "Timeout", "url": "https://github.com/gofiber/fiber/tree/main/middleware/timeout", "description": "Adds a max time for a request and forwards to ErrorHandler if it is exceeded.", "stars": "39k"}]}, {"name": "\ud83d\udd17 External", "parent": "\u2699\ufe0f Middlewares", "entries": [{"name": "storage", "url": "https://github.com/gofiber/storage", "description": "Premade storage drivers that implement the Storage interface, designed to be used with various Fiber middlewares.", "stars": "324"}, {"name": "template", "url": "https://github.com/gofiber/template", "description": "This package contains 8 template engines that can be used with Fiber v1.10.x Go version 1.13 or higher is required.", "stars": "312"}]}, {"name": "\u200d\ud83d\udcbb Contrib", "parent": "\u2699\ufe0f Middlewares", "entries": [{"name": "casbin", "url": "https://github.com/gofiber/contrib/tree/main/v3/casbin", "description": "Authorization middleware for Fiber powered by Casbin.", "stars": "293"}, {"name": "circuitbreaker", "url": "https://github.com/gofiber/contrib/tree/main/v3/circuitbreaker", "description": "Circuit breaker middleware for Fiber.", "stars": "293"}, {"name": "fgprof", "url": "https://github.com/gofiber/contrib/tree/main/v3/fgprof", "description": "Fiber profiling support via fgprof.", "stars": "293"}, {"name": "hcaptcha", "url": "https://github.com/gofiber/contrib/tree/main/v3/hcaptcha", "description": "Bot-protection middleware using hCaptcha.", "stars": "293"}, {"name": "i18n", "url": "https://github.com/gofiber/contrib/tree/main/v3/i18n", "description": "Internationalization middleware built on go-i18n.", "stars": "293"}, {"name": "jwt", "url": "https://github.com/gofiber/contrib/tree/main/v3/jwt", "description": "JSON Web Token (JWT) auth middleware.", "stars": "293"}, {"name": "loadshed", "url": "https://github.com/gofiber/contrib/tree/main/v3/loadshed", "description": "Load-shedding middleware to protect Fiber services under pressure.", "stars": "293"}, {"name": "monitor", "url": "https://github.com/gofiber/contrib/tree/main/v3/monitor", "description": "Server metrics monitor middleware for Fiber.", "stars": "293"}, {"name": "newrelic", "url": "https://github.com/gofiber/contrib/tree/main/v3/newrelic", "description": "New Relic instrumentation support for Fiber.", "stars": "293"}, {"name": "opa", "url": "https://github.com/gofiber/contrib/tree/main/v3/opa", "description": "Open Policy Agent (OPA) middleware support for Fiber.", "stars": "293"}, {"name": "otel", "url": "https://github.com/gofiber/contrib/tree/main/v3/otel", "description": "OpenTelemetry middleware support for Fiber.", "stars": "293"}, {"name": "paseto", "url": "https://github.com/gofiber/contrib/tree/main/v3/paseto", "description": "Platform-Agnostic Security Tokens (PASETO) auth middleware.", "stars": "293"}, {"name": "sentry", "url": "https://github.com/gofiber/contrib/tree/main/v3/sentry", "description": "Error monitoring and reporting integration for Fiber with Sentry.", "stars": "293"}, {"name": "socketio", "url": "https://github.com/gofiber/contrib/tree/main/v3/socketio", "description": "Socket.IO-inspired WebSocket wrapper middleware for Fiber.", "stars": "293"}, {"name": "swaggo", "url": "https://github.com/gofiber/contrib/tree/main/v3/swaggo", "description": "Middleware for serving Swag-generated API docs in Fiber.", "stars": "293"}, {"name": "swaggerui", "url": "https://github.com/gofiber/contrib/tree/main/v3/swaggerui", "description": "Swagger UI middleware for serving OpenAPI specs in Fiber.", "stars": "293"}, {"name": "testcontainers", "url": "https://github.com/gofiber/contrib/tree/main/v3/testcontainers", "description": "Service implementation for integrating Testcontainers with Fiber.", "stars": "293"}, {"name": "WebSocket", "url": "https://github.com/gofiber/contrib/tree/main/v3/websocket", "description": "Fasthttp-based WebSocket integration for Fiber with `fiber.Ctx` support.", "stars": "293"}, {"name": "zap", "url": "https://github.com/gofiber/contrib/tree/main/v3/zap", "description": "Logging middleware support for Fiber with Zap.", "stars": "293"}, {"name": "zerolog", "url": "https://github.com/gofiber/contrib/tree/main/v3/zerolog", "description": "Logging middleware support for Fiber with Zerolog.", "stars": "293"}]}, {"name": "\ud83c\udf31 Third Party", "parent": "\u2699\ufe0f Middlewares", "entries": [{"name": "shareed2k/fiber\\_tracing", "url": "https://github.com/shareed2k/fiber_tracing", "description": "Middleware trace requests on Fiber framework with OpenTracing API.", "stars": "12"}, {"name": "shareed2k/fiber\\_limiter", "url": "https://github.com/shareed2k/fiber_limiter", "description": "Limiter using Redis as store for rate limit with two algorithms for choosing sliding window, gcra leaky bucket.", "stars": "14"}, {"name": "ansrivas/fiberprometheus", "url": "https://github.com/ansrivas/fiberprometheus", "description": "Prometheus middleware for gofiber.", "stars": "206"}, {"name": "sacsand/gofiber-firebaseauth", "url": "https://github.com/sacsand/gofiber-firebaseauth", "description": "Fiber Firebase Auth Middleware.", "stars": "26"}, {"name": "aschenmaker/fiber-health-check", "url": "https://github.com/aschenmaker/fiber-health-check", "description": "Health-check middleware support health-check for Fiber\ufe0f framework.", "stars": "10"}, {"name": "elastic/apmfiber", "url": "https://github.com/elastic/apm-agent-go/tree/master/module/apmfiber", "description": "APM Agent for Go Fiber.", "stars": "426"}, {"name": "eozer/fiber\\_ldapauth", "url": "https://github.com/eozer/fiber_ldapauth", "description": "LDAP Authentication Middleware for Fiber.", "stars": "4"}, {"name": "fugue-labs/gollem", "url": "https://github.com/fugue-labs/gollem/tree/main/contrib/fiberhandler", "description": "Handler adapter that wraps a gollem AI agent as a Fiber handler with SSE streaming support.", "stars": "23"}, {"name": "DavidHoenisch/fiber-coraza", "url": "https://github.com/DavidHoenisch/fiber-coraza", "description": "Coraza WAF middleware for Fiber, providing web application firewall protection with ModSecurity-compatible rules.", "stars": "2"}, {"name": "darkweak/souin", "url": "https://github.com/darkweak/souin", "description": "HTTP cache, RFC compliant, alternative to Varnish available as a middleware.", "stars": "954"}, {"name": "witer33/fiberpow", "url": "https://github.com/witer33/fiberpow", "description": "Anti DDoS/Bot Middleware with a customizable Proof Of Work challenge.", "stars": "15"}, {"name": "beyer-stefan/gofiber-minifier", "url": "https://github.com/beyer-stefan/gofiber-minifier", "description": "Minifying middleware for HTML5, CSS3, and JavaScript.", "stars": "2"}, {"name": "joffref/opa-middleware", "url": "https://github.com/Joffref/opa-middleware", "description": "Provides an OPA middleware integration for fiber.", "stars": "22"}, {"name": "vladfr/fiber-servertiming", "url": "https://github.com/vladfr/fiber-servertiming", "description": "A middleware to add Server-Timing headers based on the W3C Server-Timing Spec.", "stars": "2"}, {"name": "airbrake/gobrake", "url": "https://github.com/airbrake/gobrake/tree/master/examples/fiber", "description": "An Airbrake middleware that reports performance data (route stats).", "stars": "107"}, {"name": "samber/slog-fiber", "url": "https://github.com/samber/slog-fiber", "description": "A logger middleware that uses Go slog library.", "stars": "95"}, {"name": "mikhail-bigun/fiberlogrus", "url": "https://github.com/mikhail-bigun/fiberlogrus", "description": "A logger middleware that uses logrus and its structured logging features.", "stars": "10"}, {"name": "Idan-Fishman/fiber-bind", "url": "https://github.com/Idan-Fishman/fiber-bind", "description": "Request schema validator middleware that validates sources such as the request body, query string parameters, route parameters and even form files.", "stars": "14"}, {"name": "rodrigoodhin/fiper", "url": "https://gitlab.com/rodrigoodhin/fiper", "description": "FiPer is a library that provides Fiber with Role Based Access Control (RBAC) using JWT and with database persistence using two ORM libraries are supported: Gorm and Bun."}, {"name": "zeiss/fiber-goth", "url": "https://github.com/ZEISS/fiber-goth", "description": "Simple middleware to integrate authentication to your Fiber applications.", "stars": "5"}, {"name": "zeiss/fiber-authz", "url": "https://github.com/ZEISS/fiber-authz", "description": "A middleware to secure routes in Fiber with a defined RBAC model.", "stars": "8"}, {"name": "zeiss/fiber-htmx", "url": "https://github.com/ZEISS/fiber-htmx", "description": "A middleware for using HTMX in Fiber.", "stars": "5"}, {"name": "jsorb84/ssefiber", "url": "https://github.com/jsorb84/ssefiber", "description": "A basic SSE Implementation for Fiber.", "stars": "2"}, {"name": "streamerd/fibergun", "url": "https://github.com/streamerd/fibergun", "description": "A GunDB middleware for Fiber. Enables easy integration of GunDB, a decentralized database.", "stars": "5"}, {"name": "apitally/apitally-go", "url": "https://github.com/apitally/apitally-go", "description": "Simple API monitoring tool for Fiber. Tracks API usage, errors, and performance, and includes request logging and alerting features.", "stars": "8"}, {"name": "newrelic/go-agent", "url": "https://github.com/newrelic/go-agent/tree/master/v3/integrations/nrfiber", "description": "Official New Relic middleware for Fiber that manages instrumentation for New Relic monitoring.", "stars": "831"}, {"name": "narmadaweb/limiter", "url": "https://github.com/narmadaweb/limiter", "description": "A high-performance Redis-backed rate limiter middleware for Fiber, supporting fixed window, sliding window, and token bucket algorithms.", "stars": "2"}, {"name": "narmadaweb/gonify", "url": "https://github.com/narmadaweb/gonify", "description": "Fiber Minifying middleware for HTML5, CSS3, JavaScript, Json, XML and SVG.", "stars": "2"}, {"name": "oaswrap/fiberopenapi", "url": "https://github.com/oaswrap/spec/tree/main/adapter/fiberopenapi", "description": "Fiber adapter for OpenAPI 3.x specification generation with automatic route documentation.", "stars": "94"}, {"name": "gofiber/boilerplate", "url": "https://github.com/gofiber/boilerplate", "description": "Official fiber boilerplate.", "stars": "498"}, {"name": "fiber-boilerplate", "url": "https://github.com/thomasvvugt/fiber-boilerplate", "description": "A boilerplate for the Fiber web framework.", "stars": "287"}, {"name": "sujit-baniya/fiber-boilerplate", "url": "https://github.com/sujit-baniya/fiber-boilerplate", "description": "Boilerplate on the top of fiber web framework with many middlewares and features.", "stars": "433"}, {"name": "goravel/fiber", "url": "https://github.com/goravel/fiber", "description": "Laravel similar boilerplate with support for Fiber.", "stars": "29"}, {"name": "create-go-app/fiber-go-template", "url": "https://github.com/create-go-app/fiber-go-template", "description": "Fiber backend template for Create Go App CLI.", "stars": "1.1k"}, {"name": "efectn/fiber-boilerplate", "url": "https://github.com/efectn/fiber-boilerplate", "description": "Simple and scalable boilerplate to build powerful and organized REST projects with Fiber.", "stars": "84"}, {"name": "embedmode/fiberseed", "url": "https://github.com/embedmode/fiberseed", "description": "Fiber boilerplate api with many middlewares.", "stars": "40"}, {"name": "GalvinGao/gofiber-template", "url": "https://github.com/GalvinGao/gofiber-template", "description": "A production-ready, container-first opinionated gofiber project template. Config by envvars, DI by go.uber.org/fx, Database by uptrace/bun, with out-of-the-box MVC folder structure and CI/CD support.", "stars": "132"}, {"name": "mikhail-bigun/go-app-template", "url": "https://github.com/mikhail-bigun/go-app-template", "description": "Clean architecture Go application boilerplate with enriched Fiber implementation.", "stars": "20"}, {"name": "felipeafonso/go-htmx-starter", "url": "https://github.com/FelipeAfonso/go-htmx-starter", "description": "A front-end opinionated boilerplate for Go + HTMX development, using Tailwind and Vite for Bundling and Hot Reloading.", "stars": "4"}, {"name": "amrebada/go-modules", "url": "https://github.com/amrebada/go-modules", "description": "Nest JS like structure for Go Fiber.", "stars": "15"}, {"name": "ingeniousambivert/fiber-bootstrapped", "url": "https://github.com/ingeniousambivert/fiber-bootstrapped", "description": "A toolkit for Go projects embracing a service-centric architecture, inspired by the principles of FeathersJS.", "stars": "2"}, {"name": "sebajax/go-vertical-slice-architecture", "url": "https://github.com/sebajax/go-vertical-slice-architecture", "description": "Vertical Slice Architecture code archetype using Fiber and Uber dig. A maintainable, and scalable code organization.", "stars": "52"}, {"name": "go-rat/fiber-skeleton", "url": "https://github.com/go-rat/fiber-skeleton", "description": "Fiber skeleton to powers web projects, support wire-based dependency injection.", "stars": "3"}, {"name": "gofiber/recipes", "url": "https://github.com/gofiber/recipes", "description": "Official Fiber cookbook.", "stars": "3.4k"}, {"name": "kiyonlin/fiblar-demo", "url": "https://github.com/kiyonlin/fiblar-demo", "description": "Fiber v1 + angular demo.", "stars": "3"}, {"name": "koddr/tutorial-go-fiber-rest-api", "url": "https://github.com/koddr/tutorial-go-fiber-rest-api", "description": "Tutorial for building a restful api with fiber.", "stars": "397"}, {"name": "firebase007/go-rest-api-with-fiber", "url": "https://github.com/firebase007/go-rest-api-with-fiber", "description": "Demo project with fiber, logging, basicAuth and postgresql.", "stars": "58"}, {"name": "chawk/go\\_fiber\\_quickstart", "url": "https://github.com/chawk/go_fiber_quickstart", "description": "Fiber quick start example project.", "stars": "18"}, {"name": "EricLau1/go-fiber-auth-api", "url": "https://github.com/EricLau1/go-fiber-auth-api", "description": "Golang Authentication API with Fiber MongoDB and JWT.", "stars": "55"}, {"name": "alpody/golang-fiber-realworld-example-app", "url": "https://github.com/alpody/golang-fiber-realworld-example-app", "description": "Example real world backend API built with Fiber, Gorm, Swagger.", "stars": "147"}, {"name": "paundraP/golang-starter-template", "url": "https://github.com/paundraP/Go-Starter-Template", "description": "Golang REST API with authentication, authorization, and integrated payment gateway support.", "stars": "6"}, {"name": "Alibaba/opentelemetry-go-auto-instrumentation", "url": "https://github.com/alibaba/opentelemetry-go-auto-instrumentation", "description": "A tool to monitor fiber application without changing any code with OpenTelemetry APIs.", "stars": "834"}, {"name": "deepmap/oapi-codegen", "url": "https://github.com/deepmap/oapi-codegen", "description": "Generate Go client and server boilerplate from OpenAPI 3 specifications.", "stars": "8.2k"}, {"name": "go-dawn/dawn", "url": "https://github.com/go-dawn/dawn", "description": "Dawn is an opinionated web framework that provides rapid development capabilities which on top of Fiber.", "stars": "18"}, {"name": "MUlt1mate/protoc-gen-httpgo", "url": "https://github.com/MUlt1mate/protoc-gen-httpgo", "description": "A protoc plugin that generates Fiber HTTP server and client code from proto files.", "stars": "17"}, {"name": "ryanbekhen/feserve", "url": "https://github.com/ryanbekhen/feserve", "description": "Feserve is a lightweight application or Docker image to serve frontend and load balancer applications.", "stars": "9"}, {"name": "tompston/gomakeme", "url": "https://github.com/tompston/gomakeme", "description": "Generate boilerplate + endpoints for Fiber or Gin REST APIs.", "stars": "9"}, {"name": "Working with middlewares and boilerplates", "url": "https://dev.to/koddr/go-fiber-by-examples-working-with-middlewares-and-boilerplates-3p0m", "description": ""}, {"name": "Testing the application", "url": "https://dev.to/koddr/go-fiber-by-examples-testing-the-application-1ldf", "description": ""}, {"name": "Delving into built-in functions", "url": "https://dev.to/koddr/go-fiber-by-examples-delving-into-built-in-functions-1p3k", "description": ""}, {"name": "Go Fiber by Examples: How can the Fiber Web Framework be useful?", "url": "https://dev.to/koddr/go-fiber-by-examples-how-can-the-fiber-web-framework-be-useful-487a", "description": ""}, {"name": "Build a RESTful API on Go: Fiber, PostgreSQL, JWT and Swagger docs in isolated Docker containers", "url": "https://dev.to/koddr/build-a-restful-api-on-go-fiber-postgresql-jwt-and-swagger-docs-in-isolated-docker-containers-475j", "description": ""}, {"name": "Getting started with Fiber", "url": "https://dev.to/fenny/getting-started-with-fiber-36b6", "description": ""}, {"name": "Building an Express-style API in Go with Fiber", "url": "https://blog.logrocket.com/express-style-api-go-fiber/", "description": ""}, {"name": "Fiber v1.9.6 How to improve performance by 817% and stay fast, flexible and friendly?", "url": "https://dev.to/koddr/fiber-v1-9-5-how-to-improve-performance-by-817-and-stay-fast-flexible-and-friendly-2dp6", "description": ""}, {"name": "Create a travel list app with Go, Fiber, Angular, MongoDB and Google Cloud Secret Manager", "url": "https://blog.yongweilun.me/create-a-travel-list-app-with-go-fiber-angular-mongodb-and-google-cloud-secret-manager-ck9fgxy0p061pcss1xt1ubu8t", "description": ""}, {"name": "Building a Basic REST API in Go using Fiber", "url": "https://tutorialedge.net/golang/basic-rest-api-go-fiber/", "description": ""}, {"name": "Creating Fast APIs In Go Using Fiber", "url": "https://dev.to/jozsefsallai/creating-fast-apis-in-go-using-fiber-59m9", "description": ""}, {"name": "Is switching from Express to Fiber worth it?", "url": "https://dev.to/koddr/are-sure-what-your-lovely-web-framework-running-so-fast-2jl1", "description": ""}, {"name": "Fiber v1.8. What's new, updated and re-thinked?", "url": "https://dev.to/koddr/fiber-v1-8-what-s-new-updated-and-re-thinked-339h", "description": ""}, {"name": "Fiber released v1.7! What's new and is it still fast, flexible and friendly?", "url": "https://dev.to/koddr/fiber-v2-is-out-now-what-s-new-and-is-he-still-fast-flexible-and-friendly-3ipf", "description": ""}, {"name": "Welcome to Fiber \u2014 an Express.js styled web framework written in Go with \u2764\ufe0f", "url": "https://dev.to/koddr/welcome-to-fiber-an-express-js-styled-fastest-web-framework-written-with-on-golang-497", "description": ""}, {"name": "Blazing Fast Unit Tests - Fiber/fasthttp/http Internals", "url": "https://medium.com/trendyol-tech/golang-blazing-fast-unit-tests-fiber-fasthttp-http-internals-and-optimizing-http-server-tests-bbd1fe7b944b", "description": ""}, {"name": "Building Microservices in Go : Part 1 - Project Setup, Dockerization", "url": "https://saadfarhan124.medium.com/building-microservices-in-go-part-1-e7e58893bc5e", "description": ""}, {"name": "Building Microservices in Go : Part 2 - Live Reload", "url": "https://saadfarhan124.medium.com/building-microservices-in-go-part-2-f9c6c535805c", "description": ""}, {"name": "Building Microservices in Go : Part 3 - Database, Models, Migrations", "url": "https://saadfarhan124.medium.com/building-microservices-in-go-part-3-database-models-migrations-a4455121bb11", "description": ""}, {"name": "Build a REST API from scratch with Go, Docker & PostgreSQL", "url": "https://dev.to/divrhino/build-a-rest-api-from-scratch-with-go-and-docker-3o54", "description": ""}, {"name": "Build a fullstack app with Go Fiber, Docker, and PostgreSQL", "url": "https://dev.to/divrhino/build-a-fullstack-app-with-go-fiber-docker-and-postgres-1jg6", "description": ""}, {"name": "Create a CRUD app with Go Fiber, Docker, and PostgreSQL", "url": "https://dev.to/divrhino/create-a-crud-app-with-go-fiber-docker-and-postgres-47e3", "description": ""}, {"name": "Is Fiber the best Go web framework? Better than Gin?", "url": "https://youtu.be/10miByMOGfY", "description": ""}, {"name": "TechEmpower", "url": "https://www.techempower.com/benchmarks/#section=data-r20\\&hw=ph\\&test=json", "description": "Project provides performance measures across a wide field of web application frameworks."}, {"name": "web-frameworks-benchmark", "url": "https://web-frameworks-benchmark.netlify.app/result", "description": "Project aims to measure the differences between the various programming language frameworks."}, {"name": "go-web-framework-benchmark", "url": "https://github.com/smallnest/go-web-framework-benchmark", "description": "This benchmark suite aims to compare the performance of Go web frameworks.", "stars": "2.1k"}]}, {"name": "\ud83d\udc4d Contributing", "parent": "\ud83e\udd16 Benchmarks", "entries": []}], "name": ""}