@ng-util/lazy
TypeScript icon, indicating that this package has built-in type declarations

17.0.1 • Public • Published

@ng-util/lazy

Lazy load javascript, css resources for Angular.

NPM version Build Status codecov Dependency Status prettier GitHub license

Demo

Usage

import { Component } from '@angular/core';
import { NuLazyService } from '@ng-util/lazy';

@Component({
  selector: 'app-demo',
  template: ` <button *ngIf="loaded" type="button" class="btn btn-primary">Primary</button>`,
})
export class DemoComponent {
  loaded = false;

  constructor(private srv: NuLazyService) {
    this.load();
  }

  async load() {
    await this.srv.load([
      `https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css`,
      `https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.bundle.min.js`,
    ]);
    this.loaded = true;
  }
}

API

name type description
monitor(paths: string | Array<string | NuLazyResources>) Observable<NuLazyResult[]> Monitor for the finished of paths
clear() void Clean all cached items
load(paths: string | Array<string | NuLazyResources>) Promise<NuLazyResult[]> Load the specified resources, includes .js, .css
loadScript(path: string, options?: { innerContent?: string }) Promise<NuLazyResult> Load a script resources
loadStyle(path: string, options?: { ref?: string, innerContent?: string }) Promise<NuLazyResult> Load a style resources

License

The MIT License (see the LICENSE file for the full text)

Package Sidebar

Install

npm i @ng-util/lazy

Weekly Downloads

1,984

Version

17.0.1

License

MIT

Unpacked Size

42.8 kB

Total Files

11

Last publish

Collaborators

  • cipchk