0.0.10 • Published 10 years ago

flumt v0.0.10

Weekly downloads
5
License
ISC
Repository
github
Last release
10 years ago

Flumt

Conceptual Implementation of EventEmitter based Flux.

// TODO Documentation

Example

Hello World

import * as React from "react";
import {Flux} from "flumt";
import {render} from "react-dom";

class App extends Flux<{}> {
  render(prors) {
    return <divHelloWorld</div>;
  }
}

// Setup renderer
const app = new App(el => {
  render(el, document.querySelector("#root"));
});
app.update(_initialState => ({}))
0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago