A TypeScript library for interacting with the system it's running on, including environment, network, and hardware information.
Go to file
2016-12-10 19:46:52 +01:00
dist update to latest standards 2016-12-10 19:46:47 +01:00
test update to latest standards 2016-12-10 19:46:47 +01:00
ts update to latest standards 2016-12-10 19:46:47 +01:00
.gitignore update 2016-10-06 23:00:29 +02:00
.gitlab-ci.yml initial 2016-10-06 19:28:00 +02:00
package.json 1.0.10 2016-12-10 19:46:52 +01:00
README.md improve README 2016-10-14 04:08:38 +02:00
tslint.json add basic module structure 2016-10-12 01:41:30 +02:00

smartsystem

simplifies lazy loading with TypeScript

Availabililty

npm git git docs

Status for master

build status coverage report Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

We recommend the use of TypeScript for best Intellisense

smartsystem supports both npm and SystemJs as module loader.

import { LazyModule } from 'smartsystem'

import * as _myPlugin from 'myPlugin' // plugin does not get loaded here at runtime
let myPluginLazy = new LazyModule<typeof _myPlugin>('myPlugin')
myPluginLazy.setLoader('npm') // sets the loader, defaults to npm anyway

import * as _anotherPlugin from 'anotherPlugin' // plugin does not get loaded here at runtime
let anotherPluginLazy = new LazyModule<typeof _anotherPlugin>('anotherPlugin')
anotherPluginLazy.setLoader('systemjs') // sets the loader to systemjs

myPluginLazy.whenLoaded.then(myPlugin => {
    /* do something with myPlugin. 
       myPlugin receives the typings flow from LazyModule class
       This does NOT load the module during runtime
       The promise whenLoaded will be resolved whenever load() is called for the first time */
})

myPluginLazy.load().then(myPlugin => {
    /* do something with myPlugin. 
       myPlugin receives the typings flow from LazyModule class
       This DOES LOAD the module */
})