Ultimate javascript tree-data logger. With colors, unicode support and word-wrapping. Typesctipt friendly.
Try it online!
npm install pretty3
import { Pretty } from 'pretty3';
Pretty.print(data);
TypedArray
, Map
, Symbol
and Error
.console.log()
styling.const rootKey = 'My georgeous data';
Pretty.print(data, rootKey, options);
const options = {
renderer: new AutodetectRenderer(),
logLineCallback: (line) => { console.log(line); },
maxLevel: 6,
maxItemsPerLevel: [30, 10],
maxLineWidth: 80,
themeStack: [defaultTheme, noSimplestIcon],
};
type options = {
renderer?: Renderer;
logLineCallback?: logLineCallbackT,
maxLevel?: number,
maxItemsPerLevel?: number || number[],
maxLineWidth?: number,
themeStack?: themeT[],
};
Poorly comented, but actual autogenerated docs (by tsdoc) are hosted here.
Intense documentation with examples is planned after API stabilization.
Contributions, issues and feature requests are welcome!
Feel free to check issues page.
Generated using TypeDoc