
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
effects-sdk
Advanced tools
Add real-time AI video effects: virtual backgrounds, blur, touch-up, auto-framing, color correction, lower-thirds, and more. Works on all browsers for conferencing, streaming, and recording.
https://github.com/user-attachments/assets/782ad06d-d0fc-4590-8dc5-18703d41e7e7
Compatible with All Browsers and Effortlessly Integrates
Effortlessly integrate the most sought-after video effects into your product. Fully compatible with all browsers. Runs directly on user devices with CPU/GPU-optimized inference, delivering high-quality results. Easily incorporate custom processing or analytics in a single step.
A Customer ID is required for the Effects SDK.
To create a Customer ID, view pricing, and activate trials, please register on the developer portal here effectssdk.ai website.
npm install effects-sdk
Usage of NPM package:
import { tsvb } from 'effects-sdk';
const sdk = new tsvb('{CUSTOMER_ID}');
//versions of wasm files should be matched with SDK version
sdk.config({
preset: 'balanced',
provider: 'webgpu',
test_inference: true,
wasmPaths: {
'ort-wasm.wasm': 'https://effectssdk.ai/sdk/web/{VERSION}/ort-wasm.wasm',
'ort-wasm-simd.wasm': 'https://effectssdk.ai/sdk/web/{VERSION}/ort-wasm-simd.wasm'
}
});
sdk.preload();
sdk.cache();
<script crossorigin="anonymous" src="https://effectssdk.ai/sdk/web/{VERSION}/tsvb-web.js"></script>
Usage of script tag instance:
const sdk = new window.tsvb('{CUSTOMER_ID}');
sdk.config({
preset: 'balanced',
provider: 'webgpu',
test_inference: true
});
sdk.preload();
sdk.cache();
const sdk = new window.tsvb('{CUSTOMER_ID}');
sdk.config({
preset: 'balanced',
provider: 'webgpu',
test_inference: true
});
sdk.preload();
sdk.cache();
sdk.onError((e) => {
switch (e.type) {
case 'error':
console.error(e.message);
break;
case 'info':
console.log(e.message);
break;
}
});
let video = document.getElementById('videoElement');
sdk.onReady = () => {
console.log('SDK is ready let\'s run it');
sdk.run();
sdk.setBackgroundColor(0x00ff00);
sdk.setBackground('color'); //😎
};
window.addEventListener('load', function () {
sdk.clear();
navigator.mediaDevices.getUserMedia({ video: true }).then(stream => {
//set stream to sdk
sdk.useStream(stream);
//draw sdk results to canvas
//sdk.toCanvas(canvas);
//draw sdk results to MediaStream
video.srcObject = sdk.getStream();
});
});
FAQs
Add real-time AI video effects: virtual backgrounds, blur, touch-up, auto-framing, color correction, lower-thirds, and more. Works on all browsers for conferencing, streaming, and recording.
The npm package effects-sdk receives a total of 7,057 weekly downloads. As such, effects-sdk popularity was classified as popular.
We found that effects-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.