Socket
Book a DemoInstallSign in
Socket

@moped/register-service-worker

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@moped/register-service-worker

A helper for managing the lifecycle of a service worker. It is part of the moped suite of utilities for creating composable configs for building node.js and react apps.

latest
Source
npmnpm
Version
0.0.8
Version published
Maintainers
1
Created
Source

register-service-worker

A helper for managing the lifecycle of a service worker. It is part of the moped suite of utilities for creating composable configs for building node.js and react apps.

Installation

yarn add @moped/register-service-worker

Usage

import register, {unregister} from '@moped/register-service-worker';

register({
  serviceWorkerNotInstalling() {
    console.log('Service worker not installing.');
  },
  newContentAvailable() {
    // At this point, the old content will have been purged and
    // the fresh content will have been added to the cache.
    // It's the perfect time to display a "New content is
    // available; please refresh." message in your web app.
    console.log('New content is available; please refresh.');
  },
  contentCached() {
    // At this point, everything has been precached.
    // It's the perfect time to display a
    // "Content is cached for offline use." message.
    console.log('Content is cached for offline use.');
  },
  noInternetConnectionFound() {
    // Only called in development mode, when the backend is
    // not currently running.
    console.log(
      'No internet connection found. App is running in offline mode.',
    );
  },
  errorRegisteringServiceWorker(err: Error){
    console.error('Error during service worker registration:', error);
  },
});

License

MIT

FAQs

Package last updated on 02 Apr 2018

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