Console text styling for TS and JS
Statistics/Info:
Language:
Size:
Lightweight package for styling console.log() in the terminal
Font colors
Background colors
Text styling
Presets
Please click the star (⭐️) button above to support my work
Run the following command:
npm install console-styling
import { log } from console-style
log('Hello World', {color: 'red', style: 'underline'});
const customStyle = {color: 'blue', style: 'bold'}
log('Hello World', customStyle);