cli-block
Version:
Create nice looking CLI Blocks
52 lines (32 loc) • 753 B
Markdown
title: About
projectTitle: CLI-Blocks
projectStyle: /assets/custom.css
# CLI BLOCKS
Create good looking blocks in your CLI

```js
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();
```
## Installation
Install from npm
```bash
npm i cli-block
```
And use it in your js file;
```js
import { start } from "cli-block";
start("CLI Blocks");
// or
import * as log from "cli-block";
log.start("CLI Blocks");
```
[gist=2d9aff65094156a9f52f67594e8000d0]