README.md

# Disclaimer
Honeybee is currently in a very early stage. Use in production environments is not advised.
Report any issues to the [IssueTracker](https://github.com/apiologist/honeybee/)

# What is Honeybee?
Honeybee is a router intended for RESTful APIs. It's built on [Plug](https://hexdocs.pm/plug/readme.html).

Honeybee's key features include:
 - Feature rich routing.
 - Strong compile time validation.
 - Detailed, descriptive errors.
 - Extreme speed.
 - Superior compile time performance.
 - Easy, DRY syntax.
 - Minimum bloat.
 - Unopinionated.

## Installation
Honeybee can be installed by adding `honeybee` to your list of dependencies in `mix.exs`:	

 ```elixir	
def deps do	
  [	
    {:honeybee, "~> 0.0.2"}	
  ]	
end	
```