
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
react-pwa-toolkit
Advanced tools
Most common PWA helpers in one toolkit. Powered by Hooks
Don't hesitate to support the project on Github if you like it ❤️ Also, contributors are always welcome!
The library is made to help to detect what browser your user has and gives you a convenient API to access user behave and most useful device events.
First of all, install it and require the library. This is a React Module.
yarn add react-pwa-toolkit
import React from "react";
import Device, { useNetwork, usePwa, useVisibility, useInstallPrompt } from "react-pwa-toolkit";
Use it inside useEffect.
useEffect(() => {
console.log(Device());
})
It will be something like:
{
"browser": {
"name": "Safari",
"version": "11.0"
},
"os": {
"name": "iOS",
"version": "11.0"
},
"platform": {
"type": "mobile",
"vendor": "Apple",
"model": "iPhone"
},
"engine": {
"name": "WebKit",
"version": "604.1.38"
}
}
If network is available, isOnline will be true. (default: true)
const isOnline = useNetwork(); // true/false
Check user is using PWA or it is a browser.
const isPwa = usePwa(); // true/false
You can track user behave when they move between tabs,
So it is helpful to play a music track when the document becomes visible and pauses the music when the document is no longer visible,
Or even lock the app when they leave it.
const isVisible = useVisibility(); // true/false
Check user choice on add-to-home-screen prompt with installationStatus.
NOTE: If you set it's initial value as false
in useInstallPrompt(false)
, it will show add-to-home-screen popup as soon as possible.
BUT if you want to show a fancy popup to encourage user to install your app set the initial value as true
like useInstallPrompt(true)
then you have access to show the popup whenever you want.
const [installationStatus, installationEvent] = useInstallPrompt(true);
useEffect(() => {
// installationStatus is one of these states: null/dismissed/accepted/installed
if(installationStatus === 'accepted') {
// User accept it. You can save it in some log with device config.
}
// Show Add-to-home-screen prompt, if user have it's condition.
if(installationEvent) {
installationEvent.prompt();
}
})
Licensed as MIT. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.
FAQs
Most common PWA functionality and APIs in one toolkit.
We found that react-pwa-toolkit 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.