Skip to content

Banner-Figlet. a simple script that takes what was typed and returns the banner

Notifications You must be signed in to change notification settings

trezhywinks/banner-figlet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Banner - Figlet font: small

// npm install figlet or git clone  https... && npm install .
const figlet = require("figlet");
const readline = require("readline");

const trezhy = readline.createInterface({
input: process.stdin,
output: process.stdout
});

trezhy.question('[=] your name: ', (input) => {
figlet.text(input, {font:'Small'}, (data, err) =>{
if(err){
console.log(err);
}
})
trezhy.close();
});

About

Banner-Figlet. a simple script that takes what was typed and returns the banner

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published