README.md

# Tamnoon

#### A simplicity-first web framework for Elixir.

Tamnoon is a web framework designed to offer a simple, minimal, and approachable way to build web applications with Elixir. It emphasizes rapid development by eliminating boilerplate, allowing you to focus on building features rather than configuring setup. Inspired by modern frontend tools such as React and Redux, Tamnoon embraces a component-based, functional architecture tailored for Elixir developers.

### Highlight Features

* Zero configuration required – Get started instantly with no setup or boilerplate.

* Built-in PubSub – Simple, native publish-subscribe messaging without extra dependencies.

* Pure Elixir – Build full-featured interactive web apps without writing any JavaScript.


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-rc.1"}
  ]
end
```

The docs can be found at <https://hexdocs.pm/tamnoon>.