@ekifvk/dashcore

Dashcore is a framework based on Angular (5.x+) that provides universal resource management, component state management, platform detection and event-based global message loop. It also has a solution for multiple window angular application, resources and requests can share their data between each window.

Usage no npm install needed!

<script type="module">
  import ekifvkDashcore from 'https://cdn.skypack.dev/@ekifvk/dashcore';
</script>

README

Dashcore

Dashcore is a framework based on Angular (5.x+) that provides universal resource management, component state management, platform detection and event-based global message loop. It also has a solution for multiple window angular application, resources and requests can share their data between each window.

How to use

npm install @ekifvk/dashcore --save

and then

    import { ... } from '@ekifvk/dashcore';

There are two type definitions in typings.d.ts:

declare type Nullable<T> = T | null | undefined;
declare type RawRegularExpression = string | RegExp;

Nullable<T> means a value can be null or undefined, RawRegularExpression is a type using by runtime listener injector (see documentation of Base structure).

Table of content