@nglogger/core
v0.0.5
Published
Pluggable logger for Angular 2 / 4 / 5
Downloads
14
Maintainers
Readme
@nglogger/core
Pluggable logger for Angular 2 / 4 / 5
Installation
$ npm install --save @nglogger/core
# Or with yarn
$ yarn add @nglogger/core
Usage
'use strict';
import { NgModule } from '@angular/core';
import { LoggerModule } from '@nglogger/core';
@NgModule({
imports: [
LoggerModule.forRoot([
/** Transports */
])
],
bootstrap: [
AppComponent
]
})
export class AppModule { }
Build
$ npm install
$ # or
$ yarn
$
$ npm run build
Test
$ npm run test
Contributing
- Fork it (https://github.com/nglogger/core/fork)
- Create your feature branch (
git checkout -b feature/<feature_name>
) - Commit your changes (
git commit -am '<type>(<scope>): added some feature'
) - Push to the branch (
git push origin feature/<feature_name>
) - Create a new Pull Request
Contributors
- SuperPaintman SuperPaintman - creator, maintainer