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.
react-screen-wake-lock
Advanced tools
React implementation of the Screen Wake Lock API. It provides a way to prevent devices from dimming or locking the screen when an application needs to keep running.
Tiniest React implementation of the Screen Wake Lock API.
It provides a way to prevent devices from dimming or locking the screen when an application needs to keep running.
Demo · Documentation · Twitter Created by Joris
useWakeLock
react-screen-wake-lock
use native Screen Wake Lock API under the hood which is not supported by all browsers.yarn add react-screen-wake-lock
or
npm i react-screen-wake-lock
import { useWakeLock } from 'react-screen-wake-lock';
function Component() {
const { isSupported, released, request, release } = useWakeLock({
onRequest: () => alert('Screen Wake Lock: requested!'),
onError: () => alert('An error happened 💥'),
onRelease: () => alert('Screen Wake Lock: released!'),
});
return (
<div>
<p>
Screen Wake Lock API supported: <b>{`${isSupported}`}</b>
<br />
Released: <b>{`${released}`}</b>
</p>
<button
type="button"
onClick={() => (released === false ? release() : request())}
>
{released === false ? 'Release' : 'Request'}
</button>
</div>
);
}
export default Component;
Prop | description | default | required |
---|---|---|---|
onRequest | called on successfully navigator.wakeLock.request | undefined | false |
onError | called when caught an error from navigator.wakeLock.request | undefined | false |
onRelease | called when wake lock is released | undefined | false |
Prop | description | type | |
---|---|---|---|
isSupported | Browser support for the Screen Wake Lock API | boolean | |
released | Once WakeLock is released, released become true and the value never changes again | boolean | undefined |
request | Returns a promise which allows control over screen dimming and locking | function | |
release | Returns a promise that is resolved once the sentinel has been successfully released | function |
To write tests with ease, follow this guide
FAQs
React implementation of the Screen Wake Lock API. It provides a way to prevent devices from dimming or locking the screen when an application needs to keep running.
The npm package react-screen-wake-lock receives a total of 3,413 weekly downloads. As such, react-screen-wake-lock popularity was classified as popular.
We found that react-screen-wake-lock 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 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.