
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
var Jingle = require('jingle');
var conn = new RealtimeConnection(); // stanza.io, xmpp-ftw, strophe, etc
var jingle = new Jingle();
var attachMediaStream = require('attachmediastream');
var localMedia = require('localMedia');
localMedia.on('localStream', function (stream) {
attachMediaStream(stream, document.getElementById('localVideo'), {
mirror: true,
muted: true
});
});
// Capture incoming Jingle data and feed it to the Jingle
// session manager for processing
conn.on('data', function (data) {
jingle.process(data);
});
// Capture outgoing Jingle signaling traffic and send it via
// a realtime connection
jingle.on('send', function (data) {
conn.send(data);
});
jingle.on('peerStreamAdded', function (session, stream) {
attachMediaStream(stream, document.getElementById('remoteVideo'));
});
// Answering a call request.
jingle.on('incoming', function (session) {
// attach a media stream if desired
// session.addStream(localMedia.localStream);
session.accept(); // Or display an incoming call banner, etc
});
// Starting an A/V session.
localMedia.start(null, function (stream) {
var sess = jingle.createMediaSession('peer@example.com/resouce');
sess.addStream(stream);
sess.start();
});
stanza.io and strophe.jinglejs for integrations of this library.
$ npm install jingle
$ make build
The bundled and minified files will be in the generated build directory.
MIT
If you like this, follow @lancestout or @hcornflower on twitter.
FAQs
Generic Jingle via WebRTC session manager.
The npm package jingle receives a total of 1,024 weekly downloads. As such, jingle popularity was classified as popular.
We found that jingle demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.