Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
R

recipes

> DevOps
Open source

Examples for Fiber

3.5K stars0 likes0 views
WebsiteGitHub

About

Examples for Fiber

--- id: welcome title: Overview sidebar_position: 1 --- # Recipes for [Fiber](https://github.com/gofiber/fiber) **Welcome to the official Fiber cookbook**! Here you can find the most **delicious** recipes to cook delicious meals using our web framework. ## Table of contents - [404 Handler](./404-handler/README.md) - Custom 404 error page handling. - [Air Live Reloading](./air/README.md) - Live reloading for Go applications. - [Asynq](./asynq/README.md) - Enqueue background jobs from Fiber and process them with an Asynq worker. - [Auth + Docker + Postgres + JWT](./auth-docker-postgres-jwt/README.md) - Authentication with Docker, Postgres, and JWT. - [Auth + JWT](./auth-jwt/README.md) - Simple JWT authentication. - [Autocert](./autocert/README.md) - Automatic TLS certificate management. - [AWS Elastic Beanstalk](./aws-eb/README.md) - Deploying to AWS Elastic Beanstalk. - [AWS SAM Container](./aws-sam-container/README.md) - Containerized serverless applications with AWS SAM. - [AWS SES Email Sender](./aws-ses-sender/README.md) - AWS SES-based Golang email delivery service. Provides email dispatch processing, status tracking, scheduled sending, and result analysis capabilities. - [Bootstrap](./bootstrap/README.md) - Integrating Bootstrap. - [Clean Architecture](./clean-architecture/README.md) - Implementing clean architecture in Go. - [Clean Code](./clean-code/README.md) - Implementing clean code in Go. - [Cloud Run](./cloud-run/README.md) - Deploying to Google Cloud Run. - [Cloudflare Container Workers with Go Fiber](./cloudflare-workers/README.md) - Run a Go Fiber v3 app in a Cloudflare Container Worker with a Worker proxy. - [Colly Gorm](./colly-gorm/README.md) - Web scraping with Colly and GORM. - [CSRF](./csrf/README.md) - Cross-Site Request Forgery (CSRF) protection. - [CSRF + Session](./csrf-with-session/README.md) - Cross-Site Request Forgery (CSRF) protection with session management. - [Docker + MariaDB](./docker-mariadb-clean-arch/README.md) - Dockerized MariaDB with Clean Architecture. - [Docker + Nginx](./docker-nginx-loadbalancer/README.md) - Load balancing with Docker and Nginx. - [Dummy JSON Proxy](./dummyjson/README.md) - Proxying dummy JSON data. - [Email Verification Service](./email-verification/README.md) - Email verification service with code generation and validation - [Entgo ORM (MySQL)](./ent-mysql/README.md) - Using Entgo ORM with MySQL - [Entgo Sveltekit](./entgo-sveltekit/README.md) - A full-stack Todo application built using Sveltekit, Tailwind CSS, Entgo, and SQLite. - [Envoy External Authorization](./envoy-extauthz/README.md) - External authorization with Envoy. - [File Server](./file-server/README.md) - Serving static files. - [Firebase Authentication](./firebase-auth/README.md) - Firebase authentication integration. - [Firebase Functions](./firebase-functions/README.md) - Using Firebase Functions. - [Form Data](./form-data/README.md) - Parsing application/x-www-form-urlencoded bodies into structs, slices and maps. - [Firebase GCloud](./gcloud/README.md) - Integrating Firebase with Google Cloud. - [Google Cloud Firebase](./gcloud-firebase/README.md) - Firebase services on Google Cloud. - [GeoIP](./geoip/README.md) - Geolocation using ip-api.com. - [GeoIP + MaxMind](./geoip-maxmind/README.md) - Geolocation with GeoIP and MaxMind databases. - [GORM](./gorm/README.md) - Using GORM with SQLite database. - [GORM MySQL](./gorm-mysql/README.md) - Using GORM with MySQL database. - [GORM + PostgreSQL](./gorm-postgres/README.md) - Using GORM with PostgreSQL database. - [Graceful shutdown](./graceful-shutdown/README.md) - Graceful shutdown of applications. - [GraphQL](./graphql/README.md) - Setting up a GraphQL server. - [gRPC](./grpc/README.md) - Using Fiber as a client to a gRPC server. - [Hello World](./hello-world/README.md) - A simple "Hello, World!" application. - [Heroku](./heroku/README.md) - Deploying to Heroku. - [Hexagonal Architecture](./hexagonal/README.md) - A Hexagonal Software Architecture in Golang and MongoDB. - [HTTPS with PKCS12 TLS](./https-pkcs12-tls/README.md) - Setting up an HTTPS server with PKCS12 TLS certificates. - [HTTPS with TLS](./https-tls/README.md) - Setting up an HTTPS server with self-signed TLS certificates. - [I18n](./i18n/README.md) - Internationalization support. - [JWT](./jwt/README.md) - Using JSON Web Tokens (JWT) for authentication. - [Kubernetes](./k8s/README.md) - Deploying applications to Kubernetes. - [Todo App + Auth + GORM + Testcontainers](./local-development-testcontainers/README.md) - A Todo application with authentication using GORM and Postgres. - [Memgraph](./memgraph/README.md) - Using Memgraph. - [MinIO](./minio/README.md) - A simple application for uploading and downloading files from MinIO. - [MongoDB](./mongodb/README.md) - Connecting to a MongoDB database. - [Monitoring with Apitally](./monitoring-with-apitally/README.md) - A simple REST API with monitoring and request logging using Apitally. - [Multiple Ports](./multiple-ports/README.md) - Running an application on multiple ports. - [MySQL](./mysql/README.md) - Connecting to a MySQL database. - [Neo4j](./neo4j/README.md) - Connecting to a Neo4j database. - [OAuth2](./oauth2/README.md) - Implementing GitHub OAuth2 authentication with GoFiber. - [Google OAuth2](./oauth2-google/README.md) - Implementing Google OAuth2 authentication. - [OpenAPI](./openapi/README.md) - Generate OpenAPI 3 documentation and JSON schema for your application. - [Optional Parameter](./optional-parameter/README.md) - Handling optional parameters. - [Parsley](./parsley/README.md) - Using Parsley for dependency injection in an application. - [PostgreSQL](./postgresql/README.md) - Connecting to a PostgreSQL database. - [Prefork](./prefork/README.md) - Running an application in prefork mode. - [RabbitMQ](./rabbitmq/README.md) - Using RabbitMQ with Fiber to publish messages to a queue. - [React](./react-router/README.md) - Using React. - [Recover Middleware](./recover/README.md) - Recover middleware for error handling. - [RSS Feed](./rss-feed/README.md) - Generating an RSS feed. - [Seenode](./seenode/README.md) - Deploying to Seenode cloud platform. - [Server Timing](./server-timing/README.md) - Adding Server Timing headers to an application. - [Sessions + SQLite3](./sessions-sqlite3/README.md) - Using SQLite3 as a storage engine for user sessions. - [Socketio](./socketio/README.md) - A chatroom application using Socket.IO. - [Single Page Application (SPA)](./spa/README.md) - Setting up a Single Page Application (SPA) using React for the frontend and Go for the backend. - [Sqlboiler](./sqlboiler/README.md) - Using Sqlboiler ORM. - [Sqlc](./sqlc/README.md) - Using Sqlc to generate Go code from SQL queries. - [Server-Sent Events](./sse/README.md) - Implementing Server-Sent Events in an application. - [Stream Request Body](./stream-request-body/README.md) - Streaming request bodies. - [Svelte Netlify](./svelte-netlify/README.md) - Deploying a Svelte + Fiber application on Netlify. - [Sveltekit Embed](./sveltekit-embed/README.md) - A full-stack application built using Sveltekit and Tailwind CSS. - [Swagger](./swagger/README.md) - Generate Swagger documentation for your application. - [Tableflip Example](./tableflip/README.md) - Use tableflip for graceful upgrades in a Go application. - [Template](./template/README.md) - Setting up a Go application with template rendering. - [Template Asset Bundling](./template-asset-bundling/README.md) - Setting up a Go application with template rendering and asset bundling. - [Todo App + Auth + GORM](./todo-app-with-auth-gorm/README.md) - A Todo application with authentication using GORM. - [Unit Testing](./unit-test/README.md) - Writing unit tests for a Go Fiber application. - [File Upload](./upload-file/README.md) - Handling file uploads in a Go application. - [URL Shortener](./url-shortener-api/README.md) - URL shortening service with a simple API. - [Validation](./validation/README.md) - Input validation using go-playground/validator. - [Vercel](./vercel/README.md) - Deploy a Go application to Vercel. - [WebSocket](./websocket/README.md) - Real-time communication application using WebSockets. - [WebSocket Chat](./websocket-chat/README.md) - Real-time chat application using WebSockets. ## ‍ Have a delicious recipe? If you have found an amazing recipe for **Fiber** — share it with others! We are ready to accept your [PR](https://github.com/gofiber/recipes/pulls) and add your recipe to the cookbook (both on [website](https://docs.gofiber.io) and this repository). ## ☕ Supporters Fiber is an open-source project that runs on donations to pay the bills, e.g., our domain name, hosting, and serverless infrastructure. If you want to support Fiber, please become a [GitHub Sponsor](https://github.com/sponsors/gofiber).

Tool Sponsors - supporting Fiber with free IDE licenses and AI credits

   

### Monthly Sponsors Fiber Guardian ☕ Fiber Supporter Fiber Friend ### One-time Sponsors Fiber Hero Fiber Friend

GitHub Issues· 2 open

View all on GitHub
  • #2707

    Discussion: New Community-Requested Examples

    no-auto-staleUpdated Sep 10, 2026

Highlights

  • •404 Handler - Custom 404 error page handling.
  • •Air Live Reloading - Live reloading for Go applications.
  • •Asynq - Enqueue background jobs from Fiber and process them with an Asynq worker.
  • •Auth + Docker + Postgres + JWT - Authentication with Docker, Postgres, and JWT.
  • •Auth + JWT - Simple JWT authentication.
  • •Autocert - Automatic TLS certificate management.
  • •AWS Elastic Beanstalk - Deploying to AWS Elastic Beanstalk.
  • •AWS SAM Container - Containerized serverless applications with AWS SAM.
  • •AWS SES Email Sender - AWS SES-based Golang email delivery service. Provides email dispatch processing, status tracking, scheduled sending, and result analysis capabilities.
  • •Bootstrap - Integrating Bootstrap.

> Tags

Gocookbookexamplesfiberhacktoberfest

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
CategoryDevOps
PricingOpen source

> Related tools

D
Docker
容器化平台,标准化应用交付
G
GitHub Actions
GitHub 原生 CI/CD 工作流
N
Nginx
高性能 Web 服务器与反向代理