669c67b969 | ||
---|---|---|
asset | ||
dist | ||
example | ||
scaffold | ||
src | ||
test | ||
.gitignore | ||
LICENSE | ||
README.md | ||
gulpfile.js | ||
package.json |
README.md
Some HTML + Scoped CSS + JS === Reusable Component
Preview
Several examples on the website.
Performance-testing on the website.
TodoMVC on the website.
Install
You can 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.