Only loads System.register modules, as described in https://github.com/ModuleLoader/es-module-loader/blob/master/docs/system-register.md.
Follows the WhatWG loader resolution algorithm, throwing when loading plain / bare names like "lodash".
Built with the ES Module Loader polyfill 1.0 branch at https://github.com/ModuleLoader/es-module-loader.
npm install system-register-loader <scriptsrc="dist/system-register-loader.js"></script><script>varloader=newSystemRegisterLoader();// relative path or URL syntax is necessary as plain resolution throwsloader.import('./path/to/file.js').then(function(m){// ...});</script>varSystemRegisterLoader=require('system-register-loader');varloader=newSystemRegisterLoader();loader.import('./path').then(function(m){// ...});MIT