
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
can-autoplay
Advanced tools
The auto-play feature detection in HTMLMediaElement (<audio> or <video>).
Table of contents:
npm install can-autoplay
Build files are available in the build/ directory. Bundlers will choose get the correct file chosen for them but if you just want to include it on the page, grab the build/can-autoplay.js file.
audio(options)Parameters:
<Boolean>, check if auto-play is possible for an inline playback, default value is false<Boolean>, check if auto-play is possible for a muted content<Number>, timeout for a check, default value is 250 msReturns:
<Promise>, resolves to a <Object>:
result <Boolean>, true - if auto-play is possibleerror <Error>, internal or timeout Error objectcanAutoplay.audio().then(({result}) => {
if (result === true) {
// Can auto-play
} else {
// Can not auto-play
}
})
video(options)Parameters:
<Boolean>, check if auto-play is possible for an inline playback, default value is false<Boolean>, check if auto-play is possible for a muted content<Number>, timeout for a check, default value is 250 msReturns:
<Promise>, resoles to a <Object>:
result <Boolean>, true - if auto-play is possibleerror <Error>, internal or timeout Error objectcanAutoplay.video().then(({result}) => {
if (result === true) {
// Can autoplay
} else {
// Can not autoplay
}
})
import canAutoPlay from 'can-autoplay';
canAutoPlay
.video({timeout: 100, muted: true})
.then(({result, error}) => {
if(result === false){
console.warn('Error did occur: ', error)
}
})
audio.mp3. Created by Weston Ruter (@westonruter). Smallest possible (<0.000001 seconds long) audio file.video.mp4. Source: https://github.com/mathiasbynens/smallIf it's required to have a legacy browser support you could use latest v2.x.x version of the library.
FAQs
The auto-play feature detection in HTMLMediaElement (`` or `<video>`).
We found that can-autoplay demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.