Set of tools to help Single Page Application development
Using Bower:
$ bower install appy --save
Using NuGet:
$ Install-Package Appy
You could use appy in different context.
requirejs.config({
paths: {
jquery: 'path/to/jquery',
underscore: 'path/to/underscore',
appy: 'path/to/appy'
}
});
define(["appy/cache"], function(cache) {
cache.loadScript("myScriptKey", "http://url.to/my/script.js").then(function() {
// my code
});
});
Include built script in your HTML file.
<script type="text/javascript" src="path/to/jquery.js"></script>
<script type="text/javascript" src="path/to/underscore.js"></script>
<script type="text/javascript" src="path/to/appy.min.js"></script>
For now documentation can be found in code.