Popularity
4.0
Growing
Activity
0.0
Stable
11
1
6
Programming language: Crystal
License: MIT License
Tags:
Framework Components
Latest version: v0.1.0
kemal-flash alternatives and similar shards
Based on the "Framework Components" category.
Alternatively, view kemal-flash alternatives based on common mentions on social networks and blogs.
-
motion.cr
Motion is a framework for building reactive, real-time frontend UI components in your Amber application using pure Crystal that are reusable, testable & encapsulated. -
mochi
Mochi is a authentication shard inspired by devise. Mochi is designed for the Amber framework with support for both Granite & Jennifer ORM's.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of kemal-flash or a related project?
README
kemal-flash
kemal-flash
provides a way to pass temporary information between actions. Anything
that's placed in the flash will be cleared out at the end of the next action. kemal-flash
depends on kemal-session
. Make sure kemal-session
is included before including
kemal-flash
.
Installation
Add this to your application's shard.yml
:
dependencies:
kemal-flash:
github: neovintage/kemal-flash
version: 0.1.0
Usage
require "kemal"
require "kemal-session"
require "kemal-flash"
get "/" do |env|
env.flash["notice"] = "welcome"
end
get "/check_flash" do |env|
env.flash["notice"]?
end
Contributing
- Fork it ( https://github.com/[your-github-name]/kemal-flash/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- [neovintage] Rimas Silkaitis - creator, maintainer