A Dojo 2 Loader plugin for loading PINF JavaScript Bundles.
Any portable bundle may be loaded. Modules and packages written for Dojo may also be bundled and loaded via the PINF JavaScript Bundle Loader potentially eliminating the need for the Dojo loader.
npm install pinf-for-dojo
http://localhost/index.html
<script src="dojo/loader.js"></script>
<script>
require({
paths: {
pinf: "pinf.require"
}
}, [
"pinf!bundle"
], function(sandbox) {
sandbox.main();
});
</script>
http://localhost/bundle.js
PINF.bundle("", function(require) {
require.memoize("/main.js", function(require, exports, module) {
exports.main = function(options) {
console.log("HelloWorld!");
}
});
});
Requirements:
Run tests:
npm test
Launch development workspace:
npm run dev
open http://localhost:8080/
npm run build