avermeulen / figlet-promised

Figlet with promises

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Figlet Promised

A version of Figlet with promises.

Created to make learning Promises and async/await approachable an fun.

Use it like this

Use it with a promise.

const figlet = require("figlet-promised");
figlet("Felix").then(function(result){
	console.log(result);
});

Use it with async/await.

const figlet = require("figlet-promised");
async function runFiglet() {
	const result = await figlet("Felix");
	console.log(result);
}
runFiglet();

Use it with Promise.all to create multiple ascii decorated words.

Promise
	.all([figlet("Luca"), figlet("Felix")])
	.then(function(results){

		results.forEach(function(name) {
			console.log(name);
		});
	});

About

Figlet with promises

License:MIT License


Languages

Language:JavaScript 100.0%