1.0.0 • Published 6 years ago
figlet-promised v1.0.0
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);
});
});1.0.0
6 years ago