ding-dong icon indicating copy to clipboard operation
ding-dong copied to clipboard

Create AGI server on #Node.js for #Asterisk quickly!

Results 14 ding-dong issues
Sort by recently updated
recently updated
newest added

Referring to this: https://github.com/antirek/ding-dong/blob/master/API.md 1. This doesn't work. Only killing the script allows the dialplan to continue. 2. I believe it should be `asyncAGIBreak` instead of `asyncagiBreak` based on this:...

I've just needed to use gosub from my agi dialplan to reuse an old routine. I realized that context.gosub call resolves imediatly and found it wird. These are my findings...

Running following on Asterisk 13, centos 7: ``` var AGIServer = require('ding-dong'); var handler = function (context) { context.onEvent('variables') .then(function (vars) { console.log('vars', vars); return context.streamFile('sorry-youre-having-problems'); }) .then(function (result) {...

Great library and very easy to use. But... Just wondering if this library (or a fork of it) can be used in standard AGI, so I can use EAGI which...