hk-infra
v0.1.1
Published
Common infrastructure for Angular-based Housekeep applications
Downloads
5
Readme
@housekeep/infra
Common infrastructure for Angular-based Housekeep applications
Installation
To install this library, run:
$ npm install @housekeep/infra --save
Peer Dependencies
- Angular 5+ (core & http)
- Lodash
- Moment/Moment-timezone
- RxJS
- ZoneJS
Consuming your library
Once you have published your library to npm, you can import your library in any Angular application by running:
$ npm install @housekeep/infra
and then from your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import your library
import { HkInfraModule } from '@housekeep/infra';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
HkInfraModule.asRoot({ API_ROOT: 'https://myroot' })
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Once your library is imported, you can use its components, directives and pipes in your Angular application:
Development
To generate all *.js
, *.d.ts
and *.metadata.json
files:
$ npm run build
To lint all *.ts
files:
$ npm run lint
License
MIT © Ian Clark