npm.io
1.0.5 • Published 7 years ago

nicelog

Licence
ISC
Version
1.0.5
Deps
1
Size
37 kB
Vulns
0
Weekly
0

Nicelog

A tiny module for pretty CLI logging

Usage

const Nicelog = require('nicelog');

const log = new Nicelog('MY APP');

log.info("Here's a log!");
log.warn("Here's a warning!");
log.error("Here's an error!");

Image 1

Custom loggers

const Nicelog = require('nicelog');

const log = Nicelog.createCustom('#05FFA2', 'MY APP');

log("Here's a custom log!");

Image 1