fission

0.0.17 • Public • Published
#Fission [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url]

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

License MIT

Readme

Keywords

Package Sidebar

Install

npm i fission

Weekly Downloads

2

Version

0.0.17

License

none

Last publish

Collaborators

  • fractal
  • yocontra