0.0.17 • Published 10 years ago
fission v0.0.17
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 fission
Getting 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:
$ gulp
Build the test bundle:
$ gulp test
Run the tests in the browser:
$ gulp test:browser
Testing
Run tests:
$ npm test
Build tests:
$ gulp test
Run browser tests:
$ gulp test:browser