0.0.26 • Published 6 years ago

ts-agi v0.0.26

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

ts-agi

node.js lib writed on typescript for Fast AGI (Asterisk Gateway Interface) server

Fork of ding-dong

Install

npm install ts-agi
const { Agi } = require('ts-agi');

const agi = new Agi();

agi.use(async (ctx, next) => {
  await ctx.streamFile('beep');
  await next();
  const { value: myVariable } = await ctx.getFullVariable('myVar');
  await ctx.sayAlpha(myVariable);
  await ctx.hangup();
});
agi.use(async ctx => {
  await ctx.setVariable('myVar', 'Hello World!!!');
});

agi.listen(3456);

Add to Asterisk extensions.conf

[default]
exten = > 1000,1,AGI(agi://localhost:3456)

Links

Asterisk AGI

0.0.26

6 years ago

0.0.25

6 years ago

0.0.24

6 years ago

0.0.23

6 years ago

0.0.2

6 years ago