fission
v0.0.17
Published
The Reactjs Toolkit
Readme
The Reactjs Toolkit
var fission = require('fission');
var app = fission();
var DOM = app.DOM;
var View = app.view({
render: function () {
return DOM.h1(null, 'Fissionjs!');
}
});
app.router.route('/',{
view: View,
el: 'content'
});
app.router.start();Install
$ npm install --save fissionGetting Started
Please read our Getting Started guide and view our Examples.
Documentation
The Documentation is organized by action or function name.
Contributing
Please contribute! We especially will accept pull requests for documentation and examples.
Building
gulp is used to build.
Build all code, and produce AMD files:
$ gulpBuild the test bundle:
$ gulp testRun the tests in the browser:
$ gulp test:browserTesting
Run tests:
$ npm testBuild tests:
$ gulp testRun browser tests:
$ gulp test:browser