Skip to content
This repository has been archived by the owner on Mar 14, 2018. It is now read-only.
/ ngfly Public archive

An awesome suite of components Angular 4

Notifications You must be signed in to change notification settings

jullierme/ngfly

Repository files navigation

ngfly

Installation

To install this library, run:

$ npm install ngfly --save

Consuming your library

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 { }

License

MIT © Jullierme Barros

ngfly