console-json
To lazy to type JSON.stringify(obj, null, indent)
try console.json(obj)
Logo designed by Liffy Designs
Usage
Install
npm i console-json -S
or
yarn add console-json
Use
import console-json; // or require('console-json');
const myObj = {
foo: 'bar'
}
console.json(myObj);
/**
{
foo: 'bar'
}
**/
Indent
Optional indent can be passed to console.json
, defaults to 4.
console.json(myObj, 2);