@satvikshukla/beautify-console
TypeScript icon, indicating that this package has built-in type declarations

1.1.21 • Public • Published

Beautify-Console

this npm package is designed to help developer have formal looking console logs.

Installation

Installation

  npm install @satvikshukla/beautify-console
  yarn add @satvikshukla/beautify-console

Features

  • Easy to set up for real, you can make it work in less than 10sec!
  • Super easy to customize
  • Professional look 👌
  • Global initial configuration
  • And much more !

Example

const {SimpleLog} = require("@satvikshukla/beautify-console")
SimpleLog.info("Hi there");

SimpleLog

Simple log is a synchronous log which can use used in place of the traditional console.log() with various customizations.

const {SimpleLog} = require("@satvikshukla/beautify-console")

SimpleLog.info("Info Log");
SimpleLog.warn("Warn log");
SimpleLog.success("Success Log");
SimpleLog.error("Error Log");
SimpleLog.log("Default Log");

Output

simpleLog

Customizations

Color: "Red" | "Green" | "Yellow" | "Blue" | "Magenta" | "Cyan" | "White" | "Reset";
Type: "SUCCESS" | "ERROR" | "INFO" | "WARN" | "COMMON";

Uses

const {SimpleLog} = require("@satvikshukla/beautify-console")

SimpleLog.log("Info Green",{Color:"Green",Type:"INFO"});
SimpleLog.log("Success Red",{Color:"Red",Type:"SUCCESS"});

AsyncLog

Async log is a asynchronous log which can use used to get logs in file with promises.

const {AsyncLog} = require("@satvikshukla/beautify-console")

AsyncLog.log("AsyncLog file")

Customizations

By default the path is taken as root -> Output -> AsyncLog"

path ?: string;
type ?: "SUCCESS" | "ERROR" | "INFO" | "WARN";
delimiter ?: string;

Uses

const {AsyncLog} = require("@satvikshukla/beautify-console")

AsyncLog.log("AsyncLog Log")
AsyncLog.success("AsyncLog Success")
AsyncLog.log("AsyncLog Custom",{delimiter:"="})

Output

Inside txt file.

[ DEFAULT    ] : 2024-03-19T12:58:54.158Z : AsyncLog Log
[ SUCCESS    ] : 2024-03-19T12:58:54.158Z : AsyncLog Success
[ DEFAULT    ] = 2024-03-19T12:58:54.158Z = AsyncLog Custom

Readme

Keywords

none

Package Sidebar

Install

npm i @satvikshukla/beautify-console

Weekly Downloads

0

Version

1.1.21

License

ISC

Unpacked Size

13.7 kB

Total Files

10

Last publish

Collaborators

  • satvikshukla