Create json.md

This commit is contained in:
Fatih Kadir Akın 2015-12-04 13:54:12 +02:00
parent eb546315d1
commit 6c1dd90611
1 changed files with 16 additions and 0 deletions

16
docs/json.md Normal file
View File

@ -0,0 +1,16 @@
# Serving JSON API
Just use `to_json` method to return.
```ruby
require "kemal"
require "json"
# You can easily access the context and set content_type like 'application/json'.
# Look how easy to build a JSON serving API.
get "/" do |env|
env.content_type = "application/json"
{name: "Serdar", age: 27}.to_json
end
```