vobiz-jssip
v1.0.1
Published
Vobiz Javascript SIP library
Maintainers
Readme
vobiz-jssip
Vobiz's JavaScript SIP library for WebRTC-based voice communication.
Based on JsSIP (MIT License).
Installation
npm install vobiz-jssipUsage
const VobizJsSIP = require('vobiz-jssip');
const socket = new VobizJsSIP.WebSocketInterface('wss://your-sip-server.com');
const ua = new VobizJsSIP.UA({
sockets: [socket],
uri: 'sip:[email protected]',
password: 'your-password'
});
ua.start();License
MIT
