Cool Console is a angular library that displays cool messages in the console.
console log javascript example, display console.messages javascript, console.log in angular html, console error messages in angular
How to make use of it:
Install
npm install cool-console --save
Add CoolConsoleModule to App NgModule
import { CommonModule } from '@angular/common'; import { CoolConsoleModule } from 'ng-cool-console'; @NgModule({ imports: [ CommonModule, CoolConsoleModule.forRoot() ], bootstrap: [App], declarations: [App] }) class MainModule {}
Use
import { CoolConsoleModule } from 'ng-cool-console'; @Component({...}) export class YourComponent { constructor(private cc: CoolConsoleService) { this.cc.success('✔ Successfully Initialized!'); this.cc.warning('⚠ Global Warning!'); this.cc.danger('💀 World is in danger!'); this.cc.info('🕊 Everything will be okay!'); this.cc.info({ name: 'ng-cool-console' }); /* Custom Log * @param1 args * @param2 color * @param3 backgroundColor */ this.cc.log('🕊 Everything will be okay!', 'black', 'red'); } }
Global Options
Global options include the following options:
Option | Type | Default | Description |
---|---|---|---|
padding | string | ‘5px 10px’ | Sets the padding for the console string box |
borderRadius | string | ‘2px’ | Sets the border radius for the console string box |
fontSize | string | ’16px’ | Classes used on toastr service methods |
Displays Cool Messages In Console, Cool Console Plugin/Github
See Demo And Download
Official Website(eneajaho): Click Here
This superior jQuery/javascript plugin is developed by eneajaho. For extra Advanced Usages, please go to the official website.