Productivity. Performance. Happiness.
Amber makes building web applications fast, simple, and enjoyable - with fewer bugs and blazing fast performance.
Amber is a web application framework written in Crystal inspired by Kemal, Rails, Phoenix and other popular application frameworks.
The purpose of Amber is not to create yet another framework, but to take advantage of the beautiful Crystal language capabilities and provide engineers and the Crystal community with an efficient, cohesive, well maintained web framework that embraces the language philosophies, conventions, and guidelines.
Amber borrows concepts that have already been battle tested and successful, and embraces new concepts through team and community collaboration and analysis, which also aligns with Crystal's philosophy.
Questions? Join our Discord.
Guidelines? We have adopted the Contributor Covenant to be our CODE OF CONDUCT for Amber.
Our Philosophy? Read Amber Philosophy H.R.T.
Read Amber documentation on https://docs.amberframework.org/amber
Techempower Framework Benchmarks - Round 18 (2019-07-09)
brew install amber
Currently, the only option to install on Linux is from source. At the time of this writing, v1.4.1 is the current stable release, but you should use the most recent tag in place of that.
sudo apt-get install libreadline-dev libsqlite3-dev libpq-dev libmysqlclient-dev libssl-dev libyaml-dev libpcre3-dev libevent-dev
git clone https://github.com/amberframework/amber.git
cd amber
git checkout v1.4.1
shards install
make
sudo make install
If you're using ArchLinux or similar distro try:
yay -S amber
To compile a local bin/amber
per project use shards build amber
To use it as dependency, add this to your application's shard.yml
:
dependencies:
amber:
github: amberframework/amber
Read more about Amber CLI installation guide
Use Amber badge
[![Amber Framework](https://img.shields.io/badge/using-amber_framework-orange.svg)](https://amberframework.org/)
crelease 0.36.0
src/amber/cli/templates/app/shard.yml.ecr
templatedocker login
docker build -t amberframework/amber:0.36.0
docker push amberframework/amber:0.36.0
Contributing to Amber can be a rewarding way to learn, teach, and build experience in just about any skill you can imagine. You don’t have to become a lifelong contributor to enjoy participating in Amber.
Tracking issues? Check our project board.
Code Triage? Join us on codetriage.
Amber is a community effort and we want You to be part of it. Join Amber Community!
git checkout -b my-new-feature
./bin/amber_spec
git commit -am 'Add some feature'
git push origin my-new-feature
This project is licensed under the MIT License - see the LICENSE file for details