Skip to content

Framework for building functional-reactive applications

License

Notifications You must be signed in to change notification settings

manguluka/cedar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cedar 🌲

cedar is a functional-reactive framework.

crates.io License Build Status

Status: cedar is in the alpha stage - not yet ready for prime-time.

Usage

Add cedar to your project via cargo.

Creating buttons & reactive text 🚀

extern crate cedar;

use cedar::dom;
use cedar::dom::Builder;

type Model = i32;

#[derive(PartialEq, Debug, Clone)]
enum Message {
    Increment,
    Decrement,
}

fn update(model: Model, message: Message) -> Model {
    match message {
        Message::Increment => model + 1,
        Message::Decrement => model - 1,
    }
}

fn view(model: &Model) -> dom::Object<Message> {
    dom::stack()
        .add(dom::button().text("+".into()).click(Message::Increment))
        .add(dom::label().text(model.to_string()))
        .add(dom::button().text("-".into()).click(Message::Decrement))
}

fn main() {
    cedar::program(0, update, view)
}

Design

A cedar application is composed of a model, update, and view. TODO: expand on this....

Credits

Inspired by:

cedar is Copyright © Tom Schroeder j.tom.schroeder@gmail.com and released under MIT license.

About

Framework for building functional-reactive applications

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Rust 100.0%