2020-11-21 12:36:16 -05:00
# Compress Middleware
2020-09-13 11:20:11 +02:00
Compression middleware for [Fiber ](https://github.com/gofiber/fiber ) that will compress the response using `gzip` , `deflate` and `brotli` compression depending on the [Accept-Encoding ](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Encoding ) header.
2020-11-21 12:36:16 -05:00
- [Compress Middleware ](#compress-middleware )
2020-11-21 12:23:35 -05:00
- [Signatures ](#signatures )
- [Examples ](#examples )
- [Default Config ](#default-config )
- [Custom Config ](#custom-config )
- [Config ](#config )
- [Default Config ](#default-config-1 )
- [Constants ](#constants )
2020-09-13 11:20:11 +02:00
2020-11-21 12:23:35 -05:00
## Signatures
2020-11-21 12:36:16 -05:00
2020-09-13 11:20:11 +02:00
```go
func New(config ...Config) fiber.Handler
```
2020-11-21 12:23:35 -05:00
## Examples
2020-11-21 12:36:16 -05:00
2020-11-21 12:23:35 -05:00
First import the middleware from Fiber,
2020-09-13 11:20:11 +02:00
```go
import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v2/middleware/compress"
)
```
2020-11-21 12:23:35 -05:00
Then create a Fiber app with `app := fiber.New()` .
### Default Config
2020-11-21 12:36:16 -05:00
2020-09-13 11:20:11 +02:00
```go
app.Use(compress.New())
2020-11-21 12:23:35 -05:00
```
2020-09-13 11:20:11 +02:00
2020-11-21 12:23:35 -05:00
### Custom Config
```go
2020-09-13 11:20:11 +02:00
// Provide a custom compression level
app.Use(compress.New(compress.Config{
Level: compress.LevelBestSpeed, // 1
}))
// Skip middleware for specific routes
app.Use(compress.New(compress.Config{
Next: func(c *fiber.Ctx) bool {
return c.Path() == "/dont_compress"
},
Level: compress.LevelBestSpeed, // 1
}))
```
2020-11-21 12:23:35 -05:00
## Config
2020-11-21 12:36:16 -05:00
2020-09-13 11:20:11 +02:00
```go
// Config defines the config for middleware.
type Config struct {
// Next defines a function to skip this middleware when returned true.
//
// Optional. Default: nil
Next func(c *fiber.Ctx) bool
// CompressLevel determines the compression algoritm
//
// Optional. Default: LevelDefault
// LevelDisabled: -1
// LevelDefault: 0
// LevelBestSpeed: 1
// LevelBestCompression: 2
Level int
}
```
2020-11-21 12:23:35 -05:00
## Default Config
2020-11-21 12:36:16 -05:00
2020-09-13 11:20:11 +02:00
```go
var ConfigDefault = Config{
Next: nil,
Level: LevelDefault,
}
```
2020-11-21 12:23:35 -05:00
## Constants
2020-11-21 12:36:16 -05:00
2020-09-13 11:20:11 +02:00
```go
// Compression levels
const (
LevelDisabled = -1
LevelDefault = 0
LevelBestSpeed = 1
LevelBestCompression = 2
)
2020-09-19 09:53:30 +05:30
```