1.0.0 • Published 5 years ago

figlet-promised v1.0.0

Weekly downloads
14
License
ISC
Repository
-
Last release
5 years ago

Figlet Promised

A version of Figlet with promises.

Created to make learning Promises and async/await approachable and 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);
		});
	});