INACTIVE - http://mzl.la/ghe-archive - virtual-dom based driver for reflex
Перейти к файлу
Irakli Gozalishvili b50991b529 Version 0.2.4 2016-11-03 09:59:29 -07:00
examples Update all examples. 2016-03-19 01:01:12 -07:00
src Implement hooks to allow execution profiling. 2016-11-03 09:55:55 -07:00
test Implement hooks to allow execution profiling. 2016-11-03 09:55:55 -07:00
.babelrc Implement hooks to allow execution profiling. 2016-11-03 09:55:55 -07:00
.flowconfig Update all examples. 2016-03-19 01:01:12 -07:00
.gitignore Initial draft. 2015-10-15 23:44:26 -07:00
.npmignore keep dist and lib for npm and ignore examples. 2015-10-20 00:35:16 -07:00
.travis.yml setup travis. 2015-10-20 00:37:04 -07:00
Readme.md Update links in readme 2016-10-20 13:10:28 -07:00
package.json Version 0.2.4 2016-11-03 09:59:29 -07:00

Readme.md

reflex-react-driver NPM version Build Status

This is a reflex application view driver that uses virtual-dom library for rendering into a DOM.

Usage

import * as App from "./app"
import {start} from "reflex"
import {Renderer} from "reflex-virtual-dom-driver"

const app = start({
  initial: App.initialize(),
  update: App.update,
  view: App.view
})

app.view.subscribe(new Renderer({target: document.body}))