alexa / alexa-skills-kit-sdk-for-nodejs

The Alexa Skills Kit SDK for Node.js helps you get a skill up and running quickly, letting you focus on skill logic instead of boilerplate code.
Apache License 2.0
3.12k stars 736 forks source link

Missing documentation for AlexaSkillEvent #183

Closed alopix closed 6 years ago

alopix commented 7 years ago

Checking the source I know which handler names to use in order to support the new out of session events (AlexaSkillEvent.*), but I think it would be nice to also add this feature to the documentation/readme, so it's easier to find which event names are supported and how to implement them.

cfischbeck commented 7 years ago

I agree, it has been difficult for me to find any information on how to handle the skill events. What resource do you recommend to learn more on handling the new List Events?

ryhinchey commented 7 years ago

I made a PR for this https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/pull/188

TianTXie commented 6 years ago

The documentation is here Skill and List Events. And also the sample skill is in alexa-cookbook-context-skill-events.

cfischbeck commented 6 years ago

This looks perfect! Thanks!