Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Module loader to load System.register modules in the browser and Node

Notifications You must be signed in to change notification settings

ModuleLoader/system-register-loader

Repository files navigation

System Register Loader

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.

Installation

npm install system-register-loader 

Browser Usage

<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>

Node Usage

varSystemRegisterLoader=require('system-register-loader');varloader=newSystemRegisterLoader();loader.import('./path').then(function(m){// ...});

LICENSE

MIT

About

Module loader to load System.register modules in the browser and Node

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 2

  •  
  •