0.0.7 • Published 7 years ago

ng2-growl v0.0.7

Weekly downloads
7
License
ISC
Repository
github
Last release
7 years ago

NG2 Growl

NG2 Growl is a module that displays growl like messages

Dependencies

  • @angular/common
  • @angular/core
  • ng2.logger

Installation

npm install --save ng2-growl

Once installed you need to import our main module:

import {GrowlModule} from 'ng2-growl';

The only remaining part is to list the imported module in your application module, passing in a config to intialize the logger.

@NgModule({
  declarations: [AppComponent, ...],
  imports: [GrowlModule.forRoot({...}), ...],
  bootstrap: [AppComponent]
})
export class AppModule {
}

Usage

To use NG2 Growl, you will need to add it to your an application html file

<ng2-growl></ng2-growl>

Import the service

import {GrowlService} from 'ng2-growl';

Intect the service

  constructor(private growlService: GrowlService) {  }

Then call one of the methods

this.growlService.addError(`You're Error message goes here`);
this.growlService.addError({heading: 'Oops', message: 'an error has occured'});