Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
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.
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.