1.0.2 • Published 3 years ago

sherbet v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

sherbet for nodejs

GitHub code size in bytes GitHub issues Build

Terminal font aesthetics for NodeJS.

sherbet example

Install Sherbet

npm i sherbet@latest

Sprinkle some on

import {Sherbet} from "sherbet";

const s = new Sherbet()

const Tick = s.coat(
    '✔︎',
    s.fGreen,
    s.bright,
)

const Success = s.coat(
    'Success!',
    s.underscore,
    s.bright
)

console.log(Tick, Success, s.coat('Hello world...', s.dim))