An open API service indexing awesome lists of open source software.

https://github.com/oldj/simple-js-module-loader

a simple js module loader.
https://github.com/oldj/simple-js-module-loader

Last synced: about 1 year ago
JSON representation

a simple js module loader.

Awesome Lists containing this project

README

          

# simple-js-module-loader

a simple js module loader.

## usage

```html


a simple js loader

a simple js loader.

myloader.register([{
name: "a",
url: "./ma.js"
}, {
name: "b",
url: "./mb.js"
}, {
name: "c",
url: "./mc.js"
}, {
name: "d",
url: "./md.js"
}]);

myloader.use("a", function (a) {
a.hello();
});

```