tiny
tiny
A simple wrapper around HTTP::Server for building CORS-enabled, multi-threaded HTTP micro-services in Crystal.
Installation
Add this to your application's shard.yml
:
dependencies:
tiny:
github: molovo/tiny
Usage
require "tiny"
# Create the handler for incoming requests
serve do |request, response|
# This block will only be run on GET requests
request.get do
response.json({
"message" => "The server is up and running",
"timestamp" => Time.now.to_s,
})
end
# This block will only be run on POST requests
request.post do
# Do something awesome!
end
end
Contributing
- Fork it ( https://github.com/molovo/tiny/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- @molovo James Dinsdale - creator, maintainer
Repository
tiny
Owner
Statistic
- 3
- 0
- 0
- 1
- 3
- over 7 years ago
- May 21, 2017
License
MIT License
Links
Synced at
Fri, 22 Nov 2024 00:48:20 GMT
Languages