1.0.3 • Published 2 months ago

@afspeirs/service-worker v1.0.3

Weekly downloads
-
License
ISC
Repository
-
Last release
2 months ago

@afspeirs/service-worker

NPM Version NPM Bundle Size

Integrate a service-worker easily into your website

About The Project

I am always using the same code across all of my web apps to install a service worker.

So I thought why not make it an npm package

This projects contains the code I use within every project to initialise the service worker and dispatch custom events to signal when there is an update available and when the assets have been cached.

Table of contents

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

Because we use workbox-window in this package. workbox-cli has been set as a peer dependency (which means that it will be installed in your project for you). This means that you can use workbox-cli commands within your builds scripts.

Create config file

Create a config file called workbox.config.cjs (The name doesn't really matter, you just need to enter the same filename in the postbuild step)

module.exports = {
  globDirectory: 'dist/',
  globPatterns: [
    '**/*.{css,js,png,html,webmanifest}',
  ],
  swDest: 'dist/service-worker.js',
  skipWaiting: true,
  clientsClaim: true,
};

For more information view the documentation site for generateSW config options

postbuild script

Update your package.json to have the following postbuild script so that the service-worker is generated:

"scripts": {
  ...
  "postbuild": "workbox generateSW workbox.config.cjs"
  ...
}

For more information view the documentation site for generateSW

Installation

BEFORE YOU INSTALL: please read the prerequisites

To install and set up the library, run:

npm i -S @afspeirs/service-worker

Usage

Once installed in your project you can include import/require the code.

For example in a JavaScript project (using Vite):

import { registerServiceWorker } from '@afspeirs/service-worker';

registerServiceWorker({
  register: import.meta.env.PROD,
  pathToServiceWorker: '/service-worker.js',
});

API

registerServiceWorker

This is the only exported function from the package currently.

registerServiceWorker(register: boolean, pathToServiceWorker: string = '/service-worker.js')

Supported params for the registerServiceWorker function are listed below.

register parameter

TypeDefault valueRequiredDescription
booleanN/AYesWhen to register the service worker

If present, the request will be performed as soon as the component is mounted

Example:

import { registerServiceWorker } from '@afspeirs/service-worker';

registerServiceWorker({
  register: import.meta.env.PROD,
  // register: process.env.NODE_ENV === 'production',
});

pathToServiceWorker parameter

TypeDefault valueRequiredDescription
string'/service-worker.js'NoThe path to where the service worker is stored

If present, the service worker at the path will be used

Example:

import { registerServiceWorker } from '@afspeirs/service-worker';

registerServiceWorker({
  register: true,
  pathToServiceWorker: '/sw.js',
});

Roadmap

  • Simplify the prerequisite steps and make it so that it can be controlled by this package

License

ISC License © Andrew Speirs

1.0.2

2 months ago

1.0.3

2 months ago

1.0.1

2 months ago

1.0.0

2 months ago