1.0.0 • Published 5 years ago

raysk-colorlog v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

color-log

🌈 A colorful logger for the browser

Installation

$ npm i colorl -S

Usage

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');