
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@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.
The npm package @internetarchive/audio-element receives a total of 17 weekly downloads. As such, @internetarchive/audio-element popularity was classified as not popular.
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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.