amethyst
Amethyst is a web framework written in Crystal language. The goals of Amethyst are to be extremely fast and provide agility in application development as Rails do. Why I called it "Amethyst"? Because Crystal has a light purple color at GitHub like amethyst gemstone.
Latest version - 0.1.7 Note that Amethyst is at it early stages, so it lacks for whole bunch of things. But you can give a hand with contributing.
For detailed information, see docs on our wiki below:
Here are some benchmarking results
For now, next things are implemented:
- class-based controllers with method-based actions
- views for actions (*.ecr)
- filters for action
- middleware support
- simple REST routing
- default routes for controller
- path, GET and POST params inside actions
- basic cookies support
- static files serving
- http logger and timer for developers
- simple environments support
- simple session support
Example
Here is classic 'Hello World' in Amethyst
require "amethyst"
class WorldController < Base::Controller
actions :hello
view "hello", "#{__DIR__}/views"
def hello
@name = "World"
respond_to do |format|
format.html { render "hello" }
end
end
end
class HelloWorldApp < Base::App
routes.draw do
all "/", "world#hello"
get "/hello", "world#hello"
register WorldController
end
end
app = HelloWorldApp.new
app.serve
# /views/hello.ecr
Hello, <%= name %>
Development
Feel free to fork project and make pull-requests. Stick to standart project structure and name conventions:
src/
amethyst/
module1/ # module1 files
class1.cr
...
module1.cr # loads all module1 files into namespace Amethyst::Module1
module2/
class1.cr # describe class Class1 (module, struct, i.e)
...
module2.cr # loads all module2 files into namespace Amethyst::Module2
file_module.cr # module that consists of one file
amethyst.cr # requires module1.cr, module2.cr, file_module.cr
spec/
module1/
class1_spec.cr # specs for Module1::Class
spec_helper.cr # loads main spec_helper
module2/
class2_spec.cr
spec_helper # loads "amethyst/all"
examples/ # examples to play with
# don't forget to require "..src/amethyst" or "..src/all"
Contributing
I would be glad for any help with contributing.
- Fork it ( https://github.com/Codcore/amethyst/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
- Andrew Yaroshuk Codcore - creator, maintainer