ami-s-conf
v1.0.0
Published
Asterisk Manager Interface configured with s-conf
Downloads
1
Readme
ami-s-conf
Asterisk Manager Interface configured with s-conf
Usage
var ami = require('ami-s-conf');
//Config is loaded from the config file passed in argv[2]. It looks for an entry named "ami".
ami.DBGet('myFamily', 'myKey')
.done(function(value){
console.log('RESULT:', value);
}, function(err){
console.error('ERROR:', err.stack||err);
});