Skip to content

Files

Latest commit

 

History

History
31 lines (28 loc) · 762 Bytes

README.md

File metadata and controls

31 lines (28 loc) · 762 Bytes

About

LoliPop is a useful Node.js module that reworks logging to the console.

  • More suited to hand placement
  • Efficient
  • Easy to use

Example Usage

Install LoliPop:

npm install lolipop

Start logging:

const { lp } = require('lolipop');

lp("install lolipop!", "12.3", 12.3, {foo: 12, bar: 0.3}, undefined, [1, 2, 3]);

Output:

"install lolipop!": string
"12.3": string
12.3: number
[object Object]: {"foo":12,"bar":0.3}
undefined
array: [1,2,3]

Links

Contributing

Before creating an issue, please ensure that it hasn't already been reported/suggested.