Package Exports
- alexa-speechlet
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (alexa-speechlet) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Alexa Speechlet
Speech Synthesis Markup generator that makes it easy to do all the things
To install:
npm install alexa-speechlet --save
example usage
const Speechlet = require("alexa-speechlet");
const speech = new Speechlet();
const ssml = speech.sentence("Hi my name is Alexa.")
.sentence("I have a secret to tell you")
.whisper("I'm not a real human")
.output();