tea-console-log-beaty
v1.0.9
Published
"tea-console-log-beaty" refers to enhancing the appearance of console output in development environments to make it more visually appealing and easier to read. While the console is primarily a tool for logging messages and debugging code, styling its outp
Downloads
3
Readme
"tea-console-log-beaty" refers to enhancing the appearance of console output in development environments to make it more visually appealing and easier to read. While the console is primarily a tool for logging messages and debugging code, styling its output can greatly improve the developer experience, especially when working with large projects or debugging complex issues.
Install
npm i tea-console-log-beaty
Usage
import { printFancyHeading, printErrorMessage, printSuccessMessage, printInfoMessage, printWarningMessage, highlightText, printCustomErrorMessage, printNotificationBanner, printAsciiArt,rainbowText} from 'tea-console-log-beaty';
printFancyHeading("Welcome to My App");
printErrorMessage("File not found!");
printSuccessMessage("Data saved successfully!");
printInfoMessage("Remember to save your work frequently.");
printWarningMessage("Low battery! Please connect your device to a charger.");
console.log(highlightText("Important Note:"));
console.log("This is some text that needs to be highlighted.");
printCustomErrorMessage("Invalid input. Please try again.");
printNotificationBanner("New Update Available");
printAsciiArt(`
/ \ / \ \ / \_______________/ `);
console.log(rainbowText("Rainbow Text"));