1.1.0 • Published 4 years ago
ui-ng-app-commons v1.1.0
UI-NG-APP-COMMONS
This project contains commons things required for IV UI
Installation
Production
Use npm package manager to install
npm install ui-app-commonsLocal Development
Take clone of this repo
Do npm install to install all dependent node modules
npm installCompiler with watch option
npm run buildUsage
Local
Update tsconfig.json file of target project and add path to UI-NG-APP-COMMONS
// Import library
import { ApplicationStoreService } from 'ui-app-commons';
// In Angular project inject it in root
// Update providers in app module
providers: [
{
provide : ApplicationStoreService,
useValue : ApplicationStoreService.getInstance()
}
],
// In components import the library and use the exposed methods1.1.0
4 years ago