Features
Specifically, rearch is a:
- ⚡️ Reactive
- 🧮 Functional
- 🔍 Testable
- 🧱 Composable
- 🔌 Extendable
- ⬆️ Scalable
- 💉 Dependency Injection
Framework.
Under Construction
This README is a large WIP, but there are some basics here.
Getting Started
First, you need to define some "capsules."
There are two ways to define capsules, depending on your toolchain. Both are 100% compatible with each other, and will continue to be in the future as well (forward compatability was a very strong factor when designing the api).
Nightly Rust (better-api feature)
Once unboxed_closures and fn_traits stabilize,
this nightly syntax will be the preferred syntax (over the current stable syntax),
and this will no longer be feature-gated.
let container = new;
let = container.read;
Stable Rust
Once unboxed_closures and fn_traits stabilize, the below will be deprecated in favor
of the now nightly-only syntax (backward compatability will be maintained).
let container = new;
let = container.read;