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

@afspeirs/service-worker

v1.1.2

Published

[![NPM Version][npm-version-shield]][npm-url] [![NPM Bundle Size][npm-bundle-size-shield]][npm-url]

Readme

@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,
});

API

Function: registerServiceWorker

Registers a service worker using the Workbox library and dispatches custom events based on the service worker's installation status.

| Parameter | Type | Default value | Required | Description | | ------------------- | ------- | ---------------------- | -------- | ---------------------------------------------- | | register | boolean | N/A | Yes | When to register the service worker | | pathToServiceWorker | string | '/service-worker.js' | No | The path to where the service worker is stored |

Usage Example:

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

registerServiceWorker({
  register: true,
  // register: import.meta.env.PROD,
  // register: process.env.NODE_ENV === 'production',
  pathToServiceWorker: '/custom-service-worker.js',
});

Custom Events

sw:content-cached

This event is dispatched (on the window) when the service worker is installed for the first time and the content is cached.

Usage Example:

window.addEventListener('sw:content-cached', () => {
  console.log('Content has been cached for offline use.');
});

sw:new-content-available

This event is dispatched (on the window) when a new version of the service worker is installed and there is new content available.

Usage Example:

window.addEventListener('sw:new-content-available', () => {
  console.log('New content is available. Please refresh the page.');
});

Roadmap

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

License

ISC License © Andrew Speirs