Console Styler is a simple NPM package that allows you to style your console messages with custom text and background colors. It's a useful tool for making your console output more visually appealing and easier to read.
You can install Console Styler using NPM:
bash npm i console_color_beauty
const { _console } = require('console_color_beauty'); // For JavaScript // OR import { _console } from 'console_color_beauty'; // For TypeScript
// Example 1: Custom text color with default background color _console('Hello, World!', 'blue');
// Example 2: Custom text and background color _console('Success!', 'white', 'green');
Dhananjay Manjare dhananjay19100@iiitnr.edu.in
Happy coding! 🚀