Go to file
Serdar Dogruyol 52ab623c50 Bump version to 1.5.0 2024-04-10 19:44:40 +03:00
.github Enable GH sponsors 2022-07-30 11:18:58 +03:00
samples Update websocket_server.cr 2016-03-19 15:38:54 +02:00
spec Add `Date` header to HTTP responses (#676) 2024-04-10 19:26:04 +03:00
src Add `Date` header to HTTP responses (#676) 2024-04-10 19:26:04 +03:00
.ameba.yml bump ameba to 1.4.0 and fix warnings (#654) 2023-02-17 08:18:37 +03:00
.gitignore Add /bin to .gitignore 2019-06-13 15:33:11 +03:00
CHANGELOG.md Update CHANGELOG 2024-04-10 19:41:00 +03:00
LICENSE Add LICENSE 2016-06-15 09:09:48 +03:00
README.md Remove Kilt reference from README 2021-09-08 17:31:45 +03:00
shard.yml Bump version to 1.5.0 2024-04-10 19:44:40 +03:00

README.md

Kemal

Kemal

Lightning Fast, Super Simple web framework.

CI Join the chat at https://gitter.im/sdogruyol/kemal

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 ECR

Documentation

You can read the documentation at the official site kemalcr.com

Thanks

Thanks to Manas for their awesome work on Frank.