Go to file
Sdogruyol 607aaeffe3 Allow headers in built-in static file server 2017-08-22 15:29:51 +03:00
images Handle missing 404 image. Fixes #263 2016-11-25 22:19:23 +03:00
samples Update websocket_server.cr 2016-03-19 15:38:54 +02:00
spec Allow headers in built-in static file server 2017-08-22 15:29:51 +03:00
src Allow headers in built-in static file server 2017-08-22 15:29:51 +03:00
.gitignore Update multipart.cr to v0.1.1 2016-11-23 20:45:57 +03:00
.travis.yml Update .travis.yml 2015-12-06 17:56:04 +02:00
CHANGELOG.md Update CHANGELOG 2017-07-01 22:17:30 +03:00
LICENSE Add LICENSE 2016-06-15 09:09:48 +03:00
README.md [CI SKIP] Remove branch: master from installation instructions 2017-06-23 10:41:32 +03:00
shard.yml 0.20.0 2017-07-01 22:02:09 +03:00

README.md

Kemal

Kemal

Lightning Fast, Super Simple web framework.

Build Status 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

Features

  • Support all REST verbs
  • Websocket support
  • Request/Response context, easy parameter handling
  • Middlewares
  • 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.