1.0.0 • Published 3 months ago

@mgalacyber/termbox v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 months ago

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]);
1.0.0

3 months ago