# Tamnoon
#### A simplicity-first web framework for Elixir.
Tamnoon is a web framework aiming to provide a simple, minimal and approachable solution to web development with Elixir. It takes a component-based and functional approach, which makes Tamnoon apps easily debuggable.
In addition to easy client-server communication, it comes with built-in PubSub functionality too - allowing you to sync up multiple users effortlessly.
To get started, check out the _Overview_ guide.
## Installation
The package can be installed by adding `tamnoon` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:tamnoon, "~> 1.0.0-a.5"}
]
end
```
The docs can be found at <https://hexdocs.pm/tamnoon>.