To install this library, run:
$ npm install ngfly --save
Once you have published your library to npm, you can import your library in any Angular application by running:
$ npm install ngfly
and then from your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgFlyModule } from 'ngfly';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgFlyModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
MIT © Jullierme Barros