headerhelp
v0.0.4
Published
Help to make good console center header with information
Downloads
25
Readme
HeaderHelp
> Beautiful header
About
HeaderHelp is a Node.js module to make good header.
Example
Import Version
Installation
npm install headerhelp
How to use
const Header = require('headerhelp');
var header = new Header({
bannerTitle: string,
bannerStyle: string,
bannerColor: string[],
littleTitle: boolean,
clear: boolean
}, {
separator: string,
name: string,
info: string[]
});
console.log(header);
- Use
setArgs(...args)
const Header = require('headerhelp');
var header = new Header({
bannerTitle: string,
bannerStyle: string,
bannerColor: string[],
littleTitle: boolean,
clear: boolean
});
header.setArgs({
separator: string,
name: string,
info: string[]
});
console.log(header);