0.0.10 • Published 8 years ago

flumt v0.0.10

Weekly downloads
5
License
ISC
Repository
github
Last release
8 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

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago