Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
@wireapp/avs-debugger
Advanced tools
Visualize and debug media tracks in web
Note: At the moment there is no NPM package because it is still unclear whether we will publish the project.
The only way to use it currently is to build from source code and then link to your project
git clone git@github.com:wireapp/wire-avs-debugger.git
npm install
npm run build
npm link
Go to your Project and run:
npm link @wireapp/avs-debugger
<script type="application/javascript" src="dist/index.js"></script>
<track-debugger id="avs-debugger"></track-debugger>
<script>
document.onreadystatechange = function () {
const state = document.readyState;
if (state == 'complete') {
// init web component
window.initTrackDebugger();
// API
document.getElementById('avs-debugger').addTrack(id, name, track);
document.getElementById('avs-debugger').removeTrack(id);
document.getElementById('avs-debugger').hasTrack(id);
}
}
</script>
<track-debugger id='avs-debugger'></track-debugger>
import * as avsTrackLogger from '@wireapp/avs-debugger';
// init web component
avsTrackLogger.initTrackDebugger();
// API
avsTrackLogger.addTrack(id, name, track);
avsTrackLogger.removeTrack(id);
avsTrackLogger.hasTrack(id);
npm install
npm start
npm install
npm run build
The generated artifacts are located in dist
FAQs
Visualize and debug media tracks
The npm package @wireapp/avs-debugger receives a total of 68 weekly downloads. As such, @wireapp/avs-debugger popularity was classified as not popular.
We found that @wireapp/avs-debugger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.