Promise version of say
$ npm install --save say-promise
const sayp = require('say-promise');
// Simple usage
sayp.speak("Some text to speech").then(() => console.log("ready"));
// With all arguments
sayp.speak(text, voice, speed).then(() => ...);
// Chained says
sayp.speak("text").then(() => sayp.speak("text two"));
Same as the say.js, see official repo
MIT