1.0.0 • Published 9 years ago

ami-s-conf v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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);
	});