beautylog
beautiful logging, TypeScript ready
Status
![codecov](https://codecov.io/gh/pushrocks/beautylog/branch/master/graph/badge.svg)
Usage
var beautylog = require("beautylog");
beautylog.log("some log message");
beautylog.info("some log message")
beautylog.ok("some log message");
beautylog.warn("some log message");
beautylog.success("some success message");
beautylog.error("some error message");
beautylog.log("some log message","normal");
beautylog.log("some success message","success");
beautylog.log("some error message","error");
The plugin produces beautiful output like this:
![console.png](https://mediaserve.lossless.digital/github.com/pushrocks/beautylog/console.png)
Ora Integration
beautylog wraps the excellent ora module from npm to better work with beautylog. In general that means that you can log persistent messages WHILE you are actually having an active Ora object. beautylog handles all the fuss for you.
var myOra = new beautylog.Ora("my awesome text", "blue");
myOra.start();
beautylog.info("some persistent text")
console.log("something")
myOra.text("some updated text");
myOra.stop();
Console Tables
beautylog allows displaying data in nice tables for better overview.
Note: This only works only in nodejs for now.
There are different types of tables.
Custom
var beautylog = require("beautylog");
var myTable = beautylog.table.new("custom",["Heading1".blue,"Heading2".blue,"Heading3".blue]);
myTable.push(["check 1","success"]);
myTable.push(["check 2","error"]);
myTable.push(["check 3","error"]);
myTable.print();
Checks
var beautylog = require("beautylog");
var myTable = beautylog.table.new("checks");
myTable.push(["check 1","success"]);
myTable.push(["check 2","error"]);
myTable.push(["check 3","error"]);
myTable.print();
The table from the code with type "checks" above looks like this:
![table.png](https://mediaserve.lossless.digital/github.com/pushrocks/beautylog/table.png)
About the authors:
![Project Phase](https://mediaserve.lossless.digital/lossless.com/img/createdby_github.svg)
![PayPal](https://img.shields.io/badge/Support%20us-PayPal-blue.svg)