0.1.7 • Published 5 years ago

lol-tiny-loader v0.1.7

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

LolTinyLoader

Build status npm package devDependencies Status

LolTinyLoader is a minimalistic ECMAScript module loader, implementing the AMD module specification like RequireJS.

Difference between RequireJS and LolTinyLoader

  • LolTinyLoader allows to synchronously resolve modules using var mod = require("my/module"). RequireJS can only resolve modules asynchronously using require(["my/module"], function (mod) { /* callback */ }); require("my/module") only returns already loaded modules.
  • LolTinyLoader offers an easy possibility to query all registered modules, using LolTinyLoader.registry.getAllModuleNames().
  • LolTinyLoader does not support asynchronous lazy loading of modules as RequireJS, and other advanced features.

Motivation

LolTinyLoader has been written to support ECMAScript 2015 modules in TypeScript. The TypeScript compiler supports to emit all modules into one file using the AMD, or alternatively the SystemJS standard (see --outFile and --module compiler options). To still be able to run the module code synchronously (like it is possibly with TypeScript's namespaces (aka. "internal modules") this loader has been implemented.

Therefore, LolTinyLoader doesn't implement the whole AMD specification; just what it is necessary to load TypeScript-generated AMD modules.

See ModulesSample (Main.ts) for an example.

Jasmine spec modules

LolTinyLoader also works well to reliably load Jasmine specs AMD modules using the following loader code.

LolTinyLoader.registry
    .getAllModuleNames()
    .filter(function (module) { return /Spec$/.test(module); })
    .forEach(function (module) { require(module); });

This synchronous loading of the spec definitions avoids issues with delayed asynchronous spec definitions e.g. when using the karma-jasmine PhantomJS loader.