Socket
Socket
Sign inDemoInstall

use-before-install-prompt

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

use-before-install-prompt

# use-before-install-prompt


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

This project has been deprecated. Move to use-pwa-install

use-before-install-prompt

React hook for beforeinstallprompt event

Install

npm i use-before-install-prompt

Usage

import React from 'react';
import useBeforeInstallPrompt from 'use-before-install-prompt';

const App = () => {
  const { isInstalled, addToHomeScreen } = useBeforeInstallPrompt();

  return (
    <>
      {!isInstalled && (
        <button onClick={addToHomeScreen}>Add to home screen</button>
      )}
    </>
  );
};

Options

optionsTypeDescriptionRequiredDefault Value
acceptedFnFunctionCallback function to execute when acceptednoconsole.log()
dismissedFnFunctionCallback function to execute when dismissednoconsole.log()
installedFnFunctionCallback function to execute when installednoconsole.log()

Return value

valueTypeDescription
isInstalledbooleanInstall state
addToHomeScreenFunctionAdd to home screen function

Browser compatibility

https://developer.mozilla.org/en-US/docs/Web/API/BeforeInstallPromptEvent#browser_compatibility

Keywords

FAQs

Package last updated on 25 Jun 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc