@mgalacyber/termbox
v1.0.0
Published
Customize your console output, highlight important information, and organize content within neatly framed boxes.
Downloads
44
Maintainers
Readme
TERMINAL BOX
Customize your console output, highlight important information, and organize content within neatly framed boxes.
Installation
npm:
$ npm install @mgalacyber/termbox
yarn:
$ yarn add @mgalacyber/termbox
Simple to Use
CommonJs (CJS) syntax
const termBox = require("@mgalacyber/termbox");
ECMAScript Modules (ESM) syntax
import termBox from "@mgalacyber/termbox";
Example
let Head = "Lorem Ipsum";
let Body = "Lorem ipsum dolor sit amet.";
let Footer = "Lorem ipsum dolor sit amet.";
termBox([Head, Body, Footer]);