1.0.3 • Published 2 years ago

console-styling v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Console text styling for TS and JS

TS and JS Console colors

Lightweight package for styling console.log() in the terminal

Features

Font colors Background colors Text styling Presets

Please click the star (⭐️) button above to support my work

How to setup:

1. Clone and Install Required Packages

Run the following command:

npm install console-styling

2. Import package

import { log } from console-style

3. Example usage

log('Hello World', {color: 'red', style: 'underline'});

const customStyle = {color: 'blue', style: 'bold'}
log('Hello World', customStyle);