Create good looking blocks in your CLI
import * as log from "cli-block";
log.start("CLI Blocks");
log.blockHeader("Let's go");
log.blockLine();
log.blockLine("So, this is CLI Blocks");
log.blockLine();
log.blockLine("A package to easily create good looking blocks in your CLI");
log.blockFooter();
Install from npm
npm i cli-block
And use it in your js file;
import { start } from "cli-block";
start("CLI Blocks");
// or
import * as log from "cli-block";
log.start("CLI Blocks");
[gist=2d9aff65094156a9f52f67594e8000d0]