Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
oscilloscope
Advanced tools
Waveform audio visualizer for the HTML5 canvas.
Import the module and bundle it for the browser with your favorite module bundler,
$ npm install oscilloscope
or include it directly in your HTML:
<script src="https://cdn.jsdelivr.net/npm/oscilloscope@1.x/dist/oscilloscope.min.js"></script>
var Oscilloscope = require('oscilloscope')
var audioContext = new window.AudioContext()
// create source from html5 audio element
var source = audioContext.createMediaElementSource(audioElement)
// attach oscilloscope
var scope = new Oscilloscope(source)
// start default animation loop
scope.animate(canvas.getContext("2d"))
See the examples folder for more details on how to customize the animation.
scope = new Oscilloscope(source [, { fftSize: 2048 }])
Supply an AudioNode as source
.
Optionally set the fftSize
property of the internal AnalyzerNode. For more control supply an AnalyzerNode as source
.
scope.draw(context [, x, y, width, height])
Draw oscilloscope to a canvas context
, and optionally set position and dimensions.
scope.animate(context [, x, y, width, height])
Start a basic animation loop that redraws the oscilloscope using the .draw()
method.
scope.stop()
Stop the animation loop started by the .animate()
method.
FAQs
Waveform audio visualizer for the HTML5 canvas
The npm package oscilloscope receives a total of 125 weekly downloads. As such, oscilloscope popularity was classified as not popular.
We found that oscilloscope demonstrated a not healthy version release cadence and project activity because the last version was released 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.