1.0.2 • Published 11 months ago

@js-bits/log-in-color v1.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
11 months ago

Colorful console logging

Add colors to your console output

Installation

Install with npm:

npm install @js-bits/log-in-color

Install with yarn:

yarn add @js-bits/log-in-color

Import where you need it:

import { green /* black, red, yellow, blue, magenta, cyan, white */, css } from '@js-bits/log-in-color';

or require for CommonJS:

const { green /* black, red, yellow, blue, magenta, cyan, white */, css } = require('@js-bits/log-in-color');

How to use

console.log(green('this message is green')); // this message is green

or

console.log(green`Now: ${new Date()}`); // Now: Sun Jun 27 2021 11:38:15 GMT-0400 (Eastern Daylight Time)

or

console.log(`RGB: ${red`red`}; ${green`green`}; ${blue`blue`}.`); // RGB: red; green; blue.

The approach above works in Chrome, Edge and Node.js. All browsers should support a little different format:

console.log(...css(`RGB: ${red`red`}; ${green`green`}; ${blue`blue`}.`)); // RGB: red; green; blue.

Use provided css() function with a spread operator to convert colored string into a list of CSS styles.

1.0.2

11 months ago

1.0.1

11 months ago

1.0.0

11 months ago

0.3.0

3 years ago

0.3.1

3 years ago

0.2.4

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.1.0

3 years ago

0.0.2

3 years ago