1.0.1 • Published 2 years ago

simple-log-color v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Simple Log Color

It is a Node.js module for colorizing console log output.

Install

npm i simple-log-color --save

Usage

Crete constant form module:

const color = require('simple-log-color')

Use:

console.log(color.Red, "Red Color")
console.log(color.Green, "Green Color")
console.log(color.Yellow, "Yellow Color")
console.log(color.Blue, "Blue Color")
console.log(color.Magenta, "Magenta Color")
console.log(color.Cyan, "Cyan Color")

Output

npm.io