Go to file
kmdjs 021d44f226 单元测试 2016-04-18 22:52:31 +08:00
asset 单元测试 2016-04-18 21:38:55 +08:00
dist 模板可替换 2016-04-18 15:56:22 +08:00
example 模板可替换 2016-04-18 15:56:22 +08:00
src 单元测试 2016-04-18 22:35:20 +08:00
test 单元测试 2016-04-18 22:52:31 +08:00
LICENSE 目录整理 2015-06-09 12:26:32 +08:00
README.md 移除zepto。更新class.js 2016-04-17 19:38:16 +08:00
gulpfile.js 移除zepto。更新class.js 2016-04-17 17:22:28 +08:00
package.json 移除zepto。更新class.js 2016-04-17 19:38:46 +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.