An open API service indexing awesome lists of open source software.

https://github.com/sujit-baniya/flash

This package is build to send the flash messages on the top of Gofiber
https://github.com/sujit-baniya/flash

cookies fiber flash-messages gofiber golang

Last synced: 4 months ago
JSON representation

This package is build to send the flash messages on the top of Gofiber

Awesome Lists containing this project

README

          

# Set flash message for routes.

This package is build to send the flash messages on the top of Gofiber

## Installation
The package can be used to validate the data and send flash message to other route.
> go get github.com/sujit-baniya/flash

## Usage

```go
package main

import (
"github.com/gofiber/fiber/v2"
"github.com/sujit-baniya/flash"
)

func main() {
app := fiber.New()
app.Get("/success-redirect", func(c *fiber.Ctx) error {
return c.JSON(flash.Get(c))
})

app.Get("/error-redirect", func(c *fiber.Ctx) error {
flash.Get(c)
return c.JSON(flash.Get(c))
})

app.Get("/error", func(c *fiber.Ctx) error {
mp := fiber.Map{
"error": true,
"message": "I'm receiving error with inline error data",
}
return flash.WithError(c, mp).Redirect("/error-redirect")
})

app.Get("/success", func(c *fiber.Ctx) error {
mp := fiber.Map{
"success": true,
"message": "I'm receiving success with inline success data",
}
return flash.WithSuccess(c, mp).Redirect("/success-redirect")
})

app.Get("/data", func(c *fiber.Ctx) error {
mp := fiber.Map{
"text": "Received arbitrary data",
}
return flash.WithData(c, mp).Redirect("/success-redirect")
})

app.Listen(":8080")
}

```