Some HTML + Scoped CSS + JS === Reusable Component
Several examples on the website.
Performance-testing on the website.
TodoMVC on the website.
You can install it via npm:
npm install alloynuclearNuclear 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');This content is released under the MIT License.