logs-colorify-package
v1.0.3
Published
A library to colorify and beautify console logs
Readme
logs-colorify-package
A library to colorify and beautify console log messages.
Installation
This package can be installed using npm or yarn.
npm install logs-colorify-package;
#OR
yarn add logs-colorify-package;Usage
This library can be used to log messages of different severity levels on the browser console.
import { Log } from 'logs-colorify-package';
Log.error('error message');
Log.warn('warning message');
Log.info('info message');
Log.debug('debug message');