Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marceloboeira/satriani
:guitar: A micro-framework for creating REST-like APIs in Crystal
https://github.com/marceloboeira/satriani
Last synced: 8 days ago
JSON representation
:guitar: A micro-framework for creating REST-like APIs in Crystal
- Host: GitHub
- URL: https://github.com/marceloboeira/satriani
- Owner: marceloboeira
- License: mit
- Created: 2015-06-26T00:01:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-29T11:53:59.000Z (almost 8 years ago)
- Last Synced: 2024-10-12T05:23:26.893Z (23 days ago)
- Language: Crystal
- Homepage:
- Size: 34.2 KB
- Stars: 13
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![Satriani](https://s-media-cache-ak0.pinimg.com/736x/e8/06/13/e80613c669a5e198803120573f414c00.jpg)
# :guitar: Satriani [![Build Status](https://travis-ci.org/marceloboeira/satriani.svg?branch=master)](https://travis-ci.org/marceloboeira/satriani)
> Web microframework for Crystal## Installation
Add this to your application's `shard.yml`:
```yaml
dependencies:
satriani:
github: marceloboeira/satriani
```## Example
In the future it will be easier to create your app with a proper DSL, for now:
```crystal
require "../src/satriani"routes = [
Satriani::Route.new("/hello-world") do |request|
"hello-world"
end
]Satriani::Application.new(routes).start
```## Contributing
Want to contribute? check [this](CONTRIBUTE.md) first.