Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@internetarchive/audio-element
Advanced tools
A LitElement wrapper for the HTML <audio>
element.
yarn add @internetarchive/audio-element
// audio-element.js
import AudioELement from '@internetarchive/audio-element';
export default AudioElement;
<!-- index.html -->
<script type="module">
import './audio-element.js';
</script>
<audio-element></audio-element>
<script>
const audioElement = document.querySelector('audio-element');
// set volume
audioElement.volume = 0.75;
// set playback rate
audioElement.playbackRate = 0.75;
// set audio sources
audioElement.sources = [
{url: "./spring.ogg", mimetype: "audio/ogg"}
{url: "./spring.mp3", mimetype: "audio/mpeg"}
]
// listen for time changes; this updates many times per second as your media plays back
audioElement.addEventListener('timeupdate', e => {
console.log('Current time has changed, new value:', e.detail.currentTime);
});
// listen for track duration changes like on load
audioElement.addEventListener('durationchange', e => {
console.log('Track duration has changed, new value:', e.detail.duration);
});
// start playing
audioElement.play();
// pause playing
audioElement.pause();
// seek to 10s
audioElement.seekTo(10);
// seek by 10s
audioElement.seekBy(10);
</script>
yarn install
yarn start // start development server and typescript compiler
yarn test
yarn test:bs
yarn storybook
yarn lint
FAQs
An Audio Element that wraps the HTML audio tag.
We found that @internetarchive/audio-element demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 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 uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.