npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-screen-wake-lock

v3.0.2

Published

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.

Downloads

18,970

Readme

Features

  • 🌐 Follows the W3C Screen Wake Lock API specifications
  • 🪝 Easy to use - Just one react hook useWakeLock
  • 🪶 Lightweight & 0 Dependency - Less than 650b
  • 🔌 Easily integration - It works without additional configuration (React, remix, Next.js...)
  • 🧪 Ready to test - Mocks the Screen Wake Lock with Jest
  • ⚠️ Browser Support - Screen Wake Lock API

Examples (Demo)

Installation

yarn add react-screen-wake-lock

or

npm i react-screen-wake-lock

Usage

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;

Props

| 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 |

Returns

| 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 |

Testing

To write tests with ease, follow this guide

Author

🌈 Joris · @_jorisre