3.23.8 • Published 2 months ago

@krivega/jssip v3.23.8

Weekly downloads
25
License
MIT
Repository
github
Last release
2 months ago

Build Status Code Quality: Javascript Total Alerts

Overview

NOTE

Starting from 3.0.0, JsSIP no longer includes the rtcninja module. However, the jssip-rtcninja package is based on the 2.0.x branch, which does include rtcninja.

Support

Getting Started

The following simple JavaScript code creates a JsSIP User Agent instance and makes a SIP call:

// Create our JsSIP instance and run it:

var socket = new JsSIP.WebSocketInterface('wss://sip.myhost.com');
var configuration = {
  sockets  : [ socket ],
  uri      : 'sip:alice@example.com',
  password : 'superpassword'
};

var ua = new JsSIP.UA(configuration);

ua.start();

// Register callbacks to desired call events
var eventHandlers = {
  'progress': function(e) {
    console.log('call is in progress');
  },
  'failed': function(e) {
    console.log('call failed with cause: '+ e.data.cause);
  },
  'ended': function(e) {
    console.log('call ended with cause: '+ e.data.cause);
  },
  'confirmed': function(e) {
    console.log('call confirmed');
  }
};

var options = {
  'eventHandlers'    : eventHandlers,
  'mediaConstraints' : { 'audio': true, 'video': true }
};

var session = ua.call('sip:bob@example.com', options);

Want to see more? Check the full documentation at https://jssip.net/documentation/.

Online Demo

Check our Tryit JsSIP online demo:

Website and Documentation

Download

Authors

José Luis Millán

Iñaki Baz Castillo

Saúl Ibarra Corretgé

License

JsSIP is released under the MIT license.

3.23.7

2 months ago

3.23.6

2 months ago

3.23.8

2 months ago

3.22.0

6 months ago

3.23.1

6 months ago

3.23.0

6 months ago

3.23.3

6 months ago

3.23.2

6 months ago

3.21.0

1 year ago

3.20.0

2 years ago

3.20.1

2 years ago

3.19.0

2 years ago

3.18.0

2 years ago

3.19.1

2 years ago

3.17.0

2 years ago

3.16.0

2 years ago

3.17.2

2 years ago

3.17.1

2 years ago

3.15.0

2 years ago

3.14.2

2 years ago

3.14.1

3 years ago

3.14.0

3 years ago

3.13.0

3 years ago

3.12.5

3 years ago

3.12.6

3 years ago

3.12.3

3 years ago

3.12.4

3 years ago

3.12.2

3 years ago

3.12.1

3 years ago

3.12.0

3 years ago

3.11.0

3 years ago

3.10.4

3 years ago

3.10.3

3 years ago

3.10.1

3 years ago

3.10.2

3 years ago

3.10.0

3 years ago

3.9.0

3 years ago

3.8.0

3 years ago

3.8.1

3 years ago

3.7.6

4 years ago

3.7.5

4 years ago

3.7.4

4 years ago

3.7.3

4 years ago

3.7.2

4 years ago

3.7.1

4 years ago

3.6.2

4 years ago

3.7.0

4 years ago

3.6.1

4 years ago

3.6.0

4 years ago

3.5.0

4 years ago

3.4.2-alpha.1

4 years ago

3.3.11

4 years ago