Research
Security News
Kill Switch Hidden in npm Packages Typosquatting Chalk and Chokidar
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
@wireapp/avs-debugger
Advanced tools
Visualize and debug media tracks in web
npm install @wireapp/avs-debugger
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>
<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);
document.getElementById('avs-debugger').reset();
// destruct web component
window.destructTrackDebugger();
}
}
</script>
import {AvsDebugger} from "@wireapp/avs-debugger";
avsTrackLogger
from
'@wireapp/avs-debugger';
// init web component
AvsDebugger.initTrackDebugger();
// API
AvsDebugger.addTrack(id, name, track);
AvsDebugger.removeTrack(id);
AvsDebugger.hasTrack(id);
AvsDebugger.reset();
// destruct web component
AvsDebugger.destructTrackDebugger();
npm install
npm start
npm install
npm run build
The generated artifacts are located in dist
A successful Github release automatically triggers an NPM release.
FAQs
Visualize and debug media tracks
The npm package @wireapp/avs-debugger receives a total of 34 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.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.