🚀 Socket Launch Week 🚀 Day 5: Introducing Socket Fix.Learn More
Socket
Sign inDemoInstall
Socket

runner-logger

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

runner-logger

Simple task runner logger.

2.0.0
latest
Source
npm
Version published
Maintainers
1
Created
Source

Task runner logger

build status npm version dependencies status devDependencies status Gitter RunKit

Installation

npm install runner-logger

Usage

Add to the scope:

const logger = require('runner-logger');

General output with different colors:

// 16:25:30.811 simple line
logger.info('simple line');

// 16:25:30.811 warning message
logger.warn('warning message');

// 16:25:30.811 error
logger.fail('error');

// print some complex data
logger.inspect(someObject);

Access colors instance:

const colors = logger.colors;

logger.info(
    colors.black.bgYellow('black text on yellow background')
);

Some task specific output:

const log = logger.wrap('webpack');

// 16:25:30.811 [webpack] build is ok
log.info('build is ok');

Contribution

If you have any problems or suggestions please open an issue according to the contribution rules.

License

runner-logger is released under the GPL-3.0 License.

Keywords

task

FAQs

Package last updated on 07 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts