Gathering detailed insights and metrics for twilio-video
Gathering detailed insights and metrics for twilio-video
Gathering detailed insights and metrics for twilio-video
Gathering detailed insights and metrics for twilio-video
Twilio’s Programmable Video JavaScript SDK
npm install twilio-video
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
571 Stars
3,213 Commits
217 Forks
81 Watching
27 Branches
48 Contributors
Updated on 22 Nov 2024
Minified
Minified + Gzipped
JavaScript (90.34%)
TypeScript (8.96%)
Dockerfile (0.3%)
Shell (0.27%)
HTML (0.14%)
Cumulative downloads
Total Downloads
Last day
-6.7%
18,928
Compared to previous day
Last week
1.7%
96,488
Compared to previous week
Last month
20.2%
396,598
Compared to previous month
Last year
-20.7%
4,491,520
Compared to previous year
4
66
twilio-video.js allows you to add real-time voice and video to your web apps.
We want your feedback! Please feel free to open a GitHub issue for suggested improvements or feature requests. If you need technical support, contact help@twilio.com.
View CHANGELOG.md for details about our releases.
Chrome | Edge (Chromium) | Firefox | Safari | WebView | |
---|---|---|---|---|---|
Android | ✓ | - | ✓ | - | - |
iOS | ✓ | - | * | ✓ | ✓ |
Linux | ✓ | - | ✓ | - | - |
macOS | ✓ | ✓ ** | ✓ | ✓ | - |
Windows | ✓ | ✓ ** | ✓ | - | - |
** twilio-video.js supports the Chromium-based Edge browser.
npm install twilio-video --save
Using this method, you can require
twilio-video.js like so:
1const Video = require('twilio-video');
TypeScript definitions can now be imported using this method.
1import * as Video from 'twilio-video'; 2 3function participantDisconnected(participant: Video.RemoteParticipant) { 4 console.log('Participant "%s" disconnected', participant.identity); 5 document.getElementById(participant.sid).remove(); 6}
Alternatively, you can import just the definitions you need like so:
1import { RemoteParticiant } from 'twilio-video'; 2 3function participantDisconnected(participant: RemoteParticipant) { 4 console.log('Participant "%s" disconnected', participant.identity); 5 document.getElementById(participant.sid).remove(); 6}
Releases of twilio-video.js are hosted on a CDN, and you can include these directly in your web app using a <script> tag.
1<script src="//sdk.twilio.com/js/video/releases/2.28.2/twilio-video.min.js"></script>
Using this method, twilio-video.js will set a browser global:
1const Video = Twilio.Video;
The following is a simple example for connecting to a Room. For more information, refer to the API Docs.
1const Video = require('twilio-video'); 2 3Video.connect('$TOKEN', { name: 'room-name' }).then(room => { 4 console.log('Connected to Room "%s"', room.name); 5 6 room.participants.forEach(participantConnected); 7 room.on('participantConnected', participantConnected); 8 9 room.on('participantDisconnected', participantDisconnected); 10 room.once('disconnected', error => room.participants.forEach(participantDisconnected)); 11}); 12 13function participantConnected(participant) { 14 console.log('Participant "%s" connected', participant.identity); 15 16 const div = document.createElement('div'); 17 div.id = participant.sid; 18 div.innerText = participant.identity; 19 20 participant.on('trackSubscribed', track => trackSubscribed(div, track)); 21 participant.on('trackUnsubscribed', trackUnsubscribed); 22 23 participant.tracks.forEach(publication => { 24 if (publication.isSubscribed) { 25 trackSubscribed(div, publication.track); 26 } 27 }); 28 29 document.body.appendChild(div); 30} 31 32function participantDisconnected(participant) { 33 console.log('Participant "%s" disconnected', participant.identity); 34 document.getElementById(participant.sid).remove(); 35} 36 37function trackSubscribed(div, track) { 38 div.appendChild(track.attach()); 39} 40 41function trackUnsubscribed(track) { 42 track.detach().forEach(element => element.remove()); 43}
Want to enable CSP in a way that's compatible with twilio-video.js? Use the following policy directives:
connect-src wss://global.vss.twilio.com wss://sdkgw.us1.twilio.com
media-src mediastream:
If you're loading twilio-video.js from sdk.twilio.com
,
you should also include the following script-src
directive:
script-src https://sdk.twilio.com
If you are enabling Krisp Noise Cancellation for
your local audio, and you are using the following default-src self
directive, you should also add the
unsafe-eval
directive:
default-src self unsafe-eval
Keep in mind, you may need to merge these policy directives with your own if you're using other services.
Fork and clone the repository. Then, install dependencies with
npm install
Then run the build
script:
npm run build
The builds and docs will be placed in the dist/
directory.
Run unit tests with
npm run test:unit
Run integration tests with
ACCOUNT_SID=<Your account sid> \
API_KEY_SID=<Your api key sid> \
API_KEY_SECRET=<Your api key secret> \
BROWSER=<Browser you'd like to use> \
npm run test:integration
You can add these optional variables to control the integration test execution :
TOPOLOGY=<peer-to-peer|group>
DEBUG=1
TEST_FILES=<path_ to_the_file>
ln -s ../../pre-commit.sh .git/hooks/pre-commit
Bug fixes welcome! If you're not familiar with the GitHub pull request/contribution process, this is a nice tutorial.
See LICENSE.md.
No vulnerabilities found.
Reason
11 commit(s) and 6 issue activity found in the last 90 days -- score normalized to 10
Reason
0 existing vulnerabilities detected
Reason
binaries present in source code
Details
Reason
license file detected
Details
Reason
Found 6/20 approved changesets -- score normalized to 3
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More