mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
44 lines
805 B
Markdown
44 lines
805 B
Markdown
# Kemal
|
|
|
|
[Sinatra](http://www.sinatrarb.com/) clone for [Crystal](http://www.crystal-lang.org).
|
|
|
|
Kemal is under heavy development and currently supports Crystal 0.9.0.
|
|
|
|
# Super Simple <3
|
|
|
|
```ruby
|
|
require "kemal"
|
|
|
|
get "/" do
|
|
"Hello World!"
|
|
end
|
|
```
|
|
|
|
Build and run!
|
|
|
|
```
|
|
crystal build --release src/kemal_sample.cr
|
|
./kemal_sample
|
|
```
|
|
Go to *http://localhost:3000*
|
|
|
|
Check [samples](https://github.com/sdogruyol/kemal/tree/master/samples) for more.
|
|
|
|
# Installation
|
|
|
|
Add it to your ```shard.yml```
|
|
|
|
```yml
|
|
dependencies:
|
|
kemal:
|
|
github: kemalcr/kemal
|
|
branch: master
|
|
```
|
|
|
|
## Status
|
|
|
|
Basic `get`, `put`, `post`, `patch`, `delete` and `head` routes can be matched, and request parameters can be obtained.
|
|
|
|
## Thanks
|
|
|
|
Thanks to Manas for their awesome work on [Frank](https://github.com/manastech/frank).
|