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 🙏

© 2026 – Pkg Stats / Ryan Hefner

pwa-install-handler

v2.6.5

Published

Handle beforeinstallprompt event in your PWA.

Readme

PWA Install Handler

npm version License: ISC

Handling PWA installation prompt made easier. This library provides a simple interface to the beforeinstallprompt event, allowing you to create a custom install button for your Progressive Web App.

Features

  • Easy to use: Simple API to handle the PWA installation flow.
  • Lightweight: Tiny footprint with zero dependencies.
  • Typed: Written in TypeScript for a better developer experience.

Installation

npm install pwa-install-handler

Usage

HTML

First, you need a button in your HTML that will trigger the installation prompt. Initially, it should be hidden.

<button id="installButton" style="display: none;">Install</button>

JavaScript

Then, in your JavaScript, you can use pwaInstallHandler to show the button when the app is installable and to trigger the prompt when the button is clicked.

import { pwaInstallHandler } from 'pwa-install-handler'

const $installButton = document.querySelector('#installButton')

pwaInstallHandler.addListener((canInstall) => {
	$installButton.style.display = canInstall ? 'inline-block' : 'none'
})

$installButton.addEventListener('click', () => {
	pwaInstallHandler.install()
})

Screencast

UI example

Demo

Check out the live demo or the source code.

API

Methods

| Method | Signature | Description | | ------------------ | --------------------------------------------------- | ------------------------------------------------------------------------------------------------------ | | install() | () => Promise<boolean> | Triggers the installation prompt. Returns a promise that resolves to true if the app is installed. | | addListener() | (callback: (canInstall: boolean) => void) => void | Adds a listener that is called when the installability state changes. The callback receives a boolean. | | removeListener() | (callback: (canInstall: boolean) => void) => void | Removes a previously added listener. | | canInstall() | () => boolean | Returns true if the app is ready to be installed. | | getEvent() | () => BeforeInstallPromptEvent \| null | Returns the internal BeforeInstallPromptEvent object. |

BeforeInstallPromptEvent

The getEvent() method returns a BeforeInstallPromptEvent object, which has the following properties:

| Property | Type | Description | | ------------ | ------------------------------ | ---------------------------------------------------------------- | | prompt() | () => Promise<void> | Shows the installation prompt to the user. | | userChoice | Promise<{ outcome: string }> | A promise that resolves when the user interacts with the prompt. |

Browser Support

The beforeinstallprompt event is not supported by all browsers. You can check the latest browser support on caniuse.com.

When the event is not supported, canInstall will always be false.

Requirements for Installability

For the beforeinstallprompt event to be fired, your PWA must meet certain requirements. These requirements are browser-specific. You can learn more about them here:

Contributing

Contributions are welcome! Please open an issue or submit a pull request on our GitHub repository.

License

This project is licensed under the ISC License. See the LICENSE file for details.