Popularity
10.0
Stable
Activity
4.0
Declining
2,881
82
158
Programming language: Crystal
License: MIT License
Tags:
Web Frameworks
Latest version: v0.27.0
kemal alternatives and similar shards
Based on the "Web Frameworks" category.
Alternatively, view kemal alternatives based on common mentions on social networks and blogs.
-
lucky
Catch bugs early, forget about most performance issues, and spend more time on code instead of debugging and writing tests
Get performance insights in less than 4 minutes.
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Promoted
scoutapm.com
Do you think we are missing an alternative of kemal or a related project?
Popular Comparisons
README
Kemal
Lightning Fast, Super Simple web framework.
Super Simple ⚡️
require "kemal"
# Matches GET "http://host:port/"
get "/" do
"Hello World!"
end
# Creates a WebSocket handler.
# Matches "ws://host:port/socket"
ws "/socket" do |socket|
socket.send "Hello from Kemal!"
end
Kemal.run
Start your application!
crystal src/kemal_sample.cr
Go to http://localhost:3000
Check documentation or samples for more.
Installation
Add this to your application's shard.yml
:
dependencies:
kemal:
github: kemalcr/kemal
See also Getting Started.
Features
- Support all REST verbs
- Websocket support
- Request/Response context, easy parameter handling
- Middleware support
- Built-in JSON support
- Built-in static file serving
- Built-in view templating via Kilt
Documentation
You can read the documentation at the official site kemalcr.com
Thanks
Thanks to Manas for their awesome work on Frank.