fluent logging with verbose insight, colors, tables, emoji, filtering, spinners, progress bars, timestamps, capturing, stack traces, clearing, & presets
npm install fliplog[![NPM version][fliplog-npm-image]][fliplog-npm-url]
[![MIT License][license-image]][license-url]
[![fliphub][gitter-badge]][gitter-url]
[![flipfam][flipfam-image]][flipfam-url]
[fliplog-npm-image]: https://img.shields.io/npm/v/fliplog.svg
[fliplog-npm-url]: https://npmjs.org/package/fliplog
[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
[license-url]: https://spdx.org/licenses/MIT
[gitter-badge]: https://img.shields.io/gitter/room/fliphub/pink.svg
[gitter-url]: https://gitter.im/fliphub/Lobby
[flipfam-image]: https://img.shields.io/badge/%F0%9F%8F%97%20%F0%9F%92%A0-flipfam-9659F7.svg
[flipfam-url]: https://www.npmjs.com/package/flipfam
> all-in-one logging tool
[deep-diff]: https://www.npmjs.com/package/deep-diff
[fmtobj]: https://github.com/queckezz/fmt-obj
[sprintf]: https://github.com/alexei/sprintf.js
[prettyformat]: https://github.com/facebook/jest/tree/master/packages/pretty-format
[ava-prettyformat]: https://github.com/avajs/pretty-format
[jest-diff]: https://github.com/facebook/jest
[diff-match-patch]: https://code.google.com/archive/p/google-diff-match-patch/
[code-prettify]: https://github.com/google/code-prettify
[chain-able]: https://github.com/fluents/chain-able
[ansi]: https://github.com/TooTallNate/ansi.js
[prettysize]: https://github.com/davglass/prettysize
[listr]: https://github.com/samverschueren/listr
[treeify]: https://github.com/notatestuser/treeify
[js-traverse]: https://github.com/substack/js-traverse
[ava-format]:https://github.com/avajs/ava
bash
yarn add fliplog
npm i fliplog --save
``js
const log = require('fliplog')
`š description
fluent logging with verbose insight, colors, tables, emoji, deep cleaning, filtering, spinners, progress bars, timestamps, capturing, stack traces, clearing, boxen, stringifying, code highlighting, notifications, beeping, sparkles, slow-mode, formatting, bar charts, & presets
šļø legend:
- š basics
- š stringifying
- json
- stringify
- š silencing
- capture all
- return formatted values
- return values
- šØ color
- chalk
- shorthands
- xterm
- function
- š emoji
- ā filtering
- š¢ level
- šÆ matcher
- š© flags
- filter
- tags
- š quick
- ⬠table
- š cleaner
- āļø diff
- š spinner
- multi
- ora
- š progress
- š notify
- šŗ stack traces
- š finding logs
- ā¾ catch errors
- Ā®ļø .register
- trace
- š clear
- š³ deep
- verbose vs tosource
- verbose
- tosource
- š highlight
- š° presets
- add your own
- use built ins
- ā timestamps
- from
- š¢ fun
- š² tree
- š bar chart
- š¦ box
- šÆ beep
- š sparkly
- š£ formatting
- š° space
- š± formatter
- š slow
- ā² timer
- ā” performance (_lightweight configurable dependencies_)
- resourcesš basics
`js
log
.data({anyKindOfData: true}) // .json, .stringify, .tosource, .verbose
.text('text to use, this is what gets colored')
.color('bold') // any cli-color, chalk, available as shorthands
.echo() // outputs the log, .return to return the formatted values
`š NEW!
> šš all of these new ones need more docs
š read the wip docs for new stuff on the wiki
$3
`js
log.italic('so short!')+// ^ same as
log.italic('so short!').echo()
`š stringifying
$3
`js
// optional second arg for options passed into pretty json
log.json({eh: 'prettified'})
`$3
`js
// args are the same as javascript-stringify
log.stringify({data: 'can stringify deep things'})
`
š silencing
- to disable outputting a log, .silence() (optional true/false arg)
- to disable all logs, .shush()
- to enable all logs, .unshush()$3
> capture output of all console logs everywhere
`js
log.startCapturing()console.log('this will be captured')
log.stopCapturing()
// captured data is available here
const saved = log.savedLog
`$3
return only echos from fliplogs, useful for getting formatted data.
`js
// formatted data
const {text, data} = log
.data({catchMeIfYouCan: true})
.text('gingerbread man')
.returnVals()// this returns everything inside, it will call .filter first
const everything = log
.color('blue.underline')
.data({canYouHandleIt: true})
.text('M')
.return()
`
šØ color
$3
all chalk colors available with
.color`js
log
.text('\n========================================\n')
.color('bold')
.echo()
`#### shorthands
`js
log
.bold('same as calling .color(bold).text(all this text)')
.echo()
`$3
!cli-colorsall cli-color are available by calling
.xterm`js
log
.time(true)
.xterm(202, 236).text(' orange!!! ')
.echo()
`
function
because it's javascript, the log is an object... but it can be called as a function for convenience`js
log({data: true}, 'text', 'color')
`stack
š emoji
names using emoji-commits are available with .emoji (currently š§ not all have been ported yet)`js
log
.emoji('phone')
.text('et')
.data('phone home')
.echo()
`ā filtering
comma separated strings, or arrays
a function can also be passed in, the argument will be an object containing the entries see flipchain/ChainedMap.entries$3
filter by log level as a number with simple comparison operators
`js
log.filter('>= 1')
log.level(1).bold('above 1... success').echo()
log.level(0).bold('not above 1...').echo()
`$3
filter using an
Array made up of Functions, Strings, and RegExps!`js
log.filter(['canada*'])
log.tag('canada-eh').white('canadian, pass.').echo()
`more advanced
`js
log.filter(['eh*', '!warm', tag => (/ez/).test(tag)])
log.tag('eh').underline('eh').echo()
log.tag('warm').red('warm').echo()
log.tag('ez').yellow('ez').echo()
`
ā important to note, if only a function is passed in, it will have the entire log instance passed to the argument, rather than the array of tags (for compatibility & simplicity.)
$3
-
verbose enables everything
- silent silences everything
- ! means disabled`js
log
.filter('!nope, yes')log
.tag('unrelated,nope')
.cyan('you will never see me :-(')
.echo()
log
.tag('yes')
.underline('yay!')
.echo()
`š© flags
this can also be done using cli flags compat with debug flags
`bash
yourprogram --DEBUG="!nope,yes"
yourprogram --DEBUG=verbose
`š quick
quickly log data and exit if you want to stop execution at a certain point for
debugging
`js
log.quick({give: 'me'}, 'everything', 'and quit')// or
log.data({now: 'die'}).exit(1)
`
⬠tables
!Screenshotextending cli-table2
`js
log
.table(['header1', 'header2'], ['row1', 'row2'])
.echo()log
.table(['header1', 'header2'])
.row({'key1': 'val1'})
.row({'key2': 'val2'})
.echo()
`āļø diff
!ava-diff
(_uses a fork of [ava-format][ava-format] which is a fork of [jest-diff][jest-diff] which is a fork of [google's diff-match-patch][diff-match-patch]_)
Compare two pieces of data. Data will be cloned so it can be mutated if needed, and then compared.
`js
let oneOneTwoTwo = 'one-one was a race horse š '
log.diff(oneOneTwoTwo)
log.diff(oneOneTwoTwo + '... two-two was one, two.')
log.echo()
`(_previously [deep-diff][deep-diff] & cli-table was used._)
`js
const royalty = {posh: true}
const lowlyPeasant = {pauper: true}
log.diff(royalty)
const abomination = Object.assign(royalty, lowlyPeasant)
log.diff(abomination)
log.echo()
`š cleaner
extremely powerful tool built with [chain-able][chain-able] using a fork of [js-traverse][js-traverse]
can take next-to-unusable output such as this !garbage
and clean it usable
!cleaned
...or you could clean out certain phrases from every log
`js
var obj = {property: {}}
obj.circularReference = obj
obj[Symbol('foo')] = 'foo'
obj.map = new Map()
obj.map.set('prop', 'value')
obj.array = [1, NaN, Infinity]log.prettyformat(obj).echo()
const cleaner = log
.cleaner(true)
.keys([/array|circularReference|map|property/])
.data(obj)
.clean()
.echo()
`š spinner
- extends cli-spinner
- uses cli-spinners
-
.Spinner is available on fliplog as the instantiated spinner#### easy
`js
// easy to color spinners
log.bold().startSpinner('loading...')
setTimeout(() => log.stopSpinner(), 2000)
`#### advanced
`js
// instance available on log.Spinner
log.startSpinner('spinner message', {
// optional spinner args
onTick: () => {}, // where to output the logs, default process.stdout
stream: () => {}
// default 60
delay: 80,
})
console.log('log this, then spinner shows up again - it is sticky.')
log.stopSpinner()
`$3
- uses node-multispinner
`js
// instance available on log.spinners
log
.addSpinner('key1', 'spinner 1 msg')
.addSpinner('key2', 'spinner 2 msg')
.addSpinner('key3', 'spinner 3 msg') // arg is optionally a string for frames
// or an object for multi-spinner options
.startSpinners()
// string arg removes by name
setTimeout(() => log.removeSpinner('key1'), 1000)
// empty args removes all
setTimeout(() => log.removeSpinner(), 20000)
`
$3
- .ora is available as a method with the same options
- adds .fliplog to the ora instance to allow chaining back to fliplog
- returns ora instance`js
// call .ora
log.ora('loading...').start()// or
log.spinner('loading...', {ora: true})
`
š progress
$3
`js
log.progress()
`$3
total, cb(bar, interval), interval time
`js
log.progress(20, (bar, interval) => {
bar.tick()
if (bar.complete) clearInterval(interval)
}, 1000)
`$3
`js
let contentLength = 128 * 1024
const bar = log.progress(' downloading [:bar] :percent :etas', {
complete: '=',
incomplete: ' ',
width: 20,
total: contentLength,
}).progressBarfunction next() {
if (!contentLength) return
bar.tick(Math.random() 10 1024)
if (!bar.complete) setTimeout(next, Math.random() * 1000)
}
next()
`š notify
- allows passing in the same options from node-notifier
#### string title and [description]
or a
string for title
`js
log
.notify('woot!', 'super long and not as important description')
.echo()
`#### shorthand (echo immediate)
`js
log.notify('woot!', true)
`
šŗ stack traces
$3
will output the stack trace formatted and inspected deeply with the error preset
`js
const ForeverAndEver = new Promise(resolve => Promise.resolve())
.then(() => Promise.reject('š'))
.catch(log.catch)
`$3
in your entry point, calling log.track() will output the location all of the next logs output from.`js
log.track()// later on...
log.bold('I cannot be found... oh wait, I was tracked.').echo()
`you can also track every console.log anywhere
`js
log.trackConsole()// becomes
eh 'at your-file#the-line-number'
console.log('me!')
`$3
calling .trace will output a shortened stack trace to the current location.
`js
log.data({bigData: 'oh'}).trace().echo()
`Ā®ļø register
$3
defines properties on the
console global and automatically calls echo where applicable, for easier access:`js
log.registerConsole()console.time('so easy')
console.bold('hullabaloo')
console.error(new Error('eh-rar'))
console.timeEnd('so easy')
console.quick('toodaloo')
// also available
// verbose, info, error, track, trace, note, warning, spinner, time, timeEnd, timeLap timeLapEcho, box, beep, timer, table, diff, diffs, stringify, stack, json, filter, tags, quick, exit, reset, sleep, slow, red, yellow, cyan, underline, magenta, bold
`$3
catches uncaught promises and errors, displays them verbosely.
`js
log.registerCatch()throw new Error('eh')
Promise.reject('eh')
`
š clear
> this will clear the terminal (at least, move it down so it is clear)`js
log.clear()
`
š³ deep
$3
| goal | winner
| ------------- |:-------------:|
| code source | tosource |
| deep inside objects | verbose |
| colors | verbose |$3
using inspector-gadget, objects are inspected and colorized as deep as configured`js
log
.bold('verbose:')
.data({
numbers: 1000,
booleans: true,
functions: () => {},
strings: 'wacky wavy fun',
})
.verbose(/ optional number for how deep to go /)
.echo()
`$3
> see the code source
using tosource for nodejs you can look at the source of a variable`js
log
.bold('tosource:')
.data({
numbers: 1000,
booleans: true,
functions: () => {},
strings: 'wacky wavy fun',
})
.tosource()
.echo()
`š highlight
- cli-highlight (but will not output wrapping html tags around the code, other options are disabled, default themes are used)
`js
function highlitedWithColors() { return 'notice me' }
log
.data(highlitedWithColors)
.tosource()
.highlight()
.echo()
`
š° presets
$3
`js
log.addPreset('warning', (chain) => {
return chain.text('ā warning:').color('bgYellow.black').verbose(10)
})
`$3
`js
log
.preset('warning')
.data('nananenano!')
.echo()log
.preset('error')
.data(new Error('prettyfull!'))
.echo()
`
$3
`js
log
.time(true)
.color('cyan')
.text('š³ so deep, so colorful, so meta šØ ')
.data(log)
.verbose()
.echo()
`
from
to use logging from a pure js object,
.from is available`js
log.from({
data: 'data',
text: 'eh',
color: 'bold',
echo: true,
})
`^ is the same as
`js
log
.text('eh')
.data('data')
.color('bold')
.echo()
`
š¢ fun
these will all be silent by default, so you can easily disable them by filtering your logs or setting silent output which can be exceedingly helpful.
š² tree

`js
log
.color('green')
.text('š² treeify')
.tree({
oranges: {
mandarin: {
clementine: null,
tangerine: 'so cheap and juicy!',
},
},
apples: {
'gala': null,
'pink lady': null,
},
})
.echo()
`$3
- options from sparkly can be passed in
- will output a random sparkle if it is not set
`js
log.sparkly().echo()
`š bar
- will output a random bar chart if not set
- options from babar can be passed in
$3
`js
log.bar().echo()
`$3
`js
const points = []
for (var i = 0; i < Math.PI * 2; i += Math.PI / 1000) {
points.push([i, Math.cos(i)]);
}
log.bar(points).echo()
`$3
`js
log
.bar([[0, 1], [1, 5], [2, 5], [3, 1], [4, 6]])
.barStyles({
width: 80,
height: 10,
color: 'yellow',
maxY: 100
})
.echo()
`šÆ beep
all options from beeper
`js
log.beep(1).echo()
`š¦ box
- all boxen options
$3
`js
// with bold colors
log.bold().box('fliplog').echo()// echos right away
log.box('fliplog', true)
// use boxen box styles
log
.boxStyles({borderColor: 'blue'})
.box('fliplog')
.echo()
`
š£ formatting
`js
log.data({}).bold('text')// returns the currently formatted text and data
const {text, data} = log.returnVals()
// returns every single setting as an object, resets
const everything = log.return()
`$3
will output
number of spaces after your log`js
log.text('followed by 2 empty lines').space(2).echo()
`š slow
slow mode allows debugging each log step-by-step, and will force a
sleep usable across all environments using sleepfor`js
log.slow(1000)
log.emoji('snail').yellow('slow...').echo()
const start = Date.now()
log.emoji('snail').yellow('...slow').echo()
const end = Date.now() - start
`ā² timer
start, stop, lap, and timer instance using fliptime
`js
log
.startTimer('named')
.sleep(1000)
.stopTimer('named')
.echoTimer('named')
`or for more customized usage
`js
log.startTimer('named')sleepfor(1000)
log.stopTimer('named').echoTimer('named')
const fliptime = log.fliptime()
`$3
allows final formatting of the data before echoing
> ā interesting to note, this is how most plugins do their formatting
`js
function cb(data) {
if (!data || typeof data !== 'object') return data Object
.keys(data)
.forEach(key => {
if (typeof data[key] === 'string')
data[key] = data[key].replace(/\s{2}/gmi, ' ')
else if (Array.isArray(data[key]))
data[key] = data[key].map(a => cb(a.name))
})
return data
}
const fixture = {
str: 'I have too many spaces',
arr: [{name: 'eh'}, {noname: 'just undefined'}],
}
log
.formatter(cb)
.data(fixture)
.echo()
`ā” performance
#### ā config
to keep the module lightweight, almost all functionality is added through plugins.
#### requiring
all non-core dependencies are required when functions are called & the filtering passes. this way, only the used-functionality is loaded.
additionally, almost all of the functions are not formatted until
.echo(), so they will not have dependencies loaded when echoing is false which means code does not have to be changed for production.if
echo(false)` or filtering disables the output, they are never called.[flipchain-url]: https://www.npmjs.com/package/flipchain
[npm-image]: https://img.shields.io/npm/v/fliplog.svg
[npm-url]: https://npmjs.org/package/fliplog
[standard-image]: https://img.shields.io/badge/code%20style-standard%2Bes6+-brightgreen.svg
[standard-url]: https://github.com/aretecode/eslint-config-aretecode
[license-image]: http://img.shields.io/badge/license-MIT-blue.svg?style=flat
[license-url]: https://spdx.org/licenses/MIT
[gitter-badge]: https://img.shields.io/gitter/room/fliphub/pink.svg
[gitter-url]: https://gitter.im/fliphub/Lobby
[spinner-img]: https://raw.githubusercontent.com/helloIAmPau/node-spinner/master/img/spinner.gif