Go to file
张磊 5661bae86b fix bug 2015-09-09 08:47:52 +08:00
asset 修正地址 2015-07-17 15:23:35 +08:00
dist fix bug 2015-09-09 08:47:52 +08:00
example 完善alert组件 2015-08-13 11:41:40 +08:00
src fix bug 2015-09-09 08:47:52 +08:00
LICENSE 目录整理 2015-06-09 12:26:32 +08:00
README.md update 2015-06-21 08:51:15 +08:00
gulpfile.js 继承zepto的core,event和touch 2015-06-21 08:49:45 +08:00
package.json 0.0.3 2015-07-21 07:02:50 +08:00

README.md

Nuclear

We have several examples on the website.

a react-like library without jsx , virtual dom and requestAnimationFrame :)

Nuclear used js , html+css and observejs instead of jsx , virtual dom and requestAnimationFrame.

Nuclear Performance test http://alloyteam.github.io/Nuclear/pt/. There is a lot of room for improvement and optimization.

Install

the file is here: nuclear.js or nuclear.min.js

You can also install it via npm:

npm install alloynuclear

Nuclear can be used in the CommonJS/AMD module definition environment, but also directly through the script tag reference in your page ,such as:

<script src="nuclear.js"></script>

you can get the Nuclear module by synchronizing require in the AMD module definition environment:

define(function (require) {
    var Nuclear = require('nuclear');
});

or asynchronous require

require([ 'nuclear' ], function (Nuclear) {
});

or require in the CommonJS module definition environment:

var Nuclear = require('nuclear');

Many thanks to

License

This content is released under the MIT License.