1.0.0 • Published 6 years ago

color-shell v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

color-shell

A Node.js module that returns colored logs

Installation

npm install color-shell --save
yarn add color-shell

Usage

Javascript

let colorShell = require('color-shell');
// Logger instance
let logger = new colorShell.Logger();
//used in debug environment
logger.debugMode = true;

logger.log("It's a standard log");
logger.success("It's a success log");
logger.warn("It's a warning log");
logger.error("It's an error log");
logger.info("It's an info log");
logger.debug("It's a debug log");

TypeScript

import { Logger } from 'color-shell';
let logger = new Logger();
//used in debug environment
logger.debugMode = true;

logger.log("It's a standard log");
logger.success("It's a success log");
logger.warn("It's a warning log");
logger.error("It's an error log");
logger.info("It's an info log");
logger.debug("It's a debug log");

Test

npm run test