You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -586,7 +586,6 @@ Here is a list of middleware that are included within the Fiber framework.
586
586
|[etag](https://github.com/gofiber/fiber/tree/main/middleware/etag)| Allows for caches to be more efficient and save bandwidth, as a web server does not need to resend a full response if the content has not changed. |
587
587
|[expvar](https://github.com/gofiber/fiber/tree/main/middleware/expvar)| Serves via its HTTP server runtime exposed variants in the JSON format. |
588
588
|[favicon](https://github.com/gofiber/fiber/tree/main/middleware/favicon)| Ignore favicon from logs or serve from memory if a file path is provided. |
589
-
|[filesystem](https://github.com/gofiber/fiber/tree/main/middleware/filesystem)| FileSystem middleware for Fiber. |
590
589
|[healthcheck](https://github.com/gofiber/fiber/tree/main/middleware/healthcheck)| Liveness and Readiness probes for Fiber. |
591
590
|[helmet](https://github.com/gofiber/fiber/tree/main/middleware/helmet)| Helps secure your apps by setting various HTTP headers. |
592
591
|[idempotency](https://github.com/gofiber/fiber/tree/main/middleware/idempotency)| Allows for fault-tolerant APIs where duplicate requests do not erroneously cause the same action performed multiple times on the server-side. |
@@ -601,6 +600,7 @@ Here is a list of middleware that are included within the Fiber framework.
601
600
|[rewrite](https://github.com/gofiber/fiber/tree/main/middleware/rewrite)| Rewrites the URL path based on provided rules. It can be helpful for backward compatibility or just creating cleaner and more descriptive links. |
|[skip](https://github.com/gofiber/fiber/tree/main/middleware/skip)| Skip middleware that skips a wrapped handler if a predicate is true. |
603
+
|[static](https://github.com/gofiber/fiber/tree/main/middleware/static)| Static middleware for Fiber that serves static files such as **images**, **CSS,** and **JavaScript**. |
604
604
|[timeout](https://github.com/gofiber/fiber/tree/main/middleware/timeout)| Adds a max time for a request and forwards to ErrorHandler if it is exceeded. |
0 commit comments