alexa-js / alexa-app

A framework for Alexa (Amazon Echo) apps using Node.js
https://www.youtube.com/watch?v=pzM4jv7k7Rg
MIT License
1.03k stars 212 forks source link

How to emit/called existing intend #363

Closed mudaser-caremerge closed 5 years ago

mudaser-caremerge commented 6 years ago

Suppose i have following attend

app.intend('callme', {slots: {}, utterances: [], (req, res) => { res.say(`i m called`)});

how i can call this intend from another intend i.e.,

app.intend('other', {slots: {}, utterances: [], (req, res) => {  });
kobim commented 5 years ago

374 just resolved that!

The new version will be released by the end of this weekend.

mudaser-caremerge commented 5 years ago

Thank you so much!