log-anything

2.1.0 • Public • Published

log-anything

log-anything is a dead simple JS debug/logging utility

Usage

npm install log-anything

Then require it.

const l = require('log-anything');

const obj = { a: 1, b: 2, c: 3 };
// log displays values
l.log('obj is', obj, 'and this is an array:', [3, 2, 1]);
// obj is { a: 1, b: 2, c: 3 } and this is an array: [ 3, 2, 1 ]

var xs = [
  ['ops/sec', 'name', '(comment)'],
  [520.56, 'algo 1'],
  ['9.99', 'two', 'strange'],
  [10, 'third one'],
  ['nine thousand', 'NaN', 'fun!'],
];
// logt displays a table
l.logt(xs);
/*
ops/sec        name       (comment)
520.56         algo 1
  9.99         two        strange
 10            third one
nine thousand  NaN        fun!
*/

Dependents (0)

Package Sidebar

Install

npm i log-anything

Weekly Downloads

1

Version

2.1.0

License

MIT

Last publish

Collaborators

  • vhf