raysk-colorlog
v1.0.0
Published
color your console
Readme
color-log
🌈 A colorful logger for the browser
Installation
$ npm i colorl -SUsage
You can use this logger for your frontend projects, choose as an ES6 module.
import { error, silly } from './logs';
error('your error message here');
silly('your message here');
===========OR==============
import log from './logs';
log.error('your error mesg')
log.silly('your message here');
