README.md

# Disclaimer
Honeybee is currently in a development 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 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.
 - 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.2.1"}	
  ]	
end	
```