New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

beautylog

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beautylog

beautiful logging, TypeScript ready


Version published
Weekly downloads
301
decreased by-21.61%
Maintainers
2
Weekly downloads
 
Created

beautylog

beautiful logging, TypeScript ready

Status

Build Status Dependency Status bitHound Dependencies bitHound Score codecov

Usage

var beautylog = require("beautylog"); //for use in OS console environment AND browser console

beautylog.log("some log message"); // normal console log message
beautylog.info("some log message") // info console log message
beautylog.ok("some log message"); // ok console log message
beautylog.warn("some log message"); // warn console log message
beautylog.success("some success message"); // success console log message
beautylog.error("some error message"); // error console log message

// alternatively you can use a logType parameter
beautylog.log("some log message","normal");
beautylog.log("some success message","success");
beautylog.log("some error message","error");
/* ... and so on ... */

The plugin produces beautiful output like this: console.png

Code Highlighting

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]); // type "custom"
myTable.push(["check 1","success"]); // adds a row the myTable
myTable.push(["check 2","error"]); // adds a row the myTable
myTable.push(["check 3","error"]); // adds a row the myTable
myTable.print(); //prints myTable to the console
Checks
var beautylog = require("beautylog");
var myTable = beautylog.table.new("checks"); // type checks
myTable.push(["check 1","success"]); // adds a row the myTable
myTable.push(["check 2","error"]); // adds a row the myTable
myTable.push(["check 3","error"]); // adds a row the myTable
myTable.print(); //prints myTable to the console

The table from the code with type "checks" above looks like this: table.png

FAQs

Package last updated on 19 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts