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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ibash/next-service-worker

v0.0.4

Published

Add a service worker powered by Workbox to your Next.js application

Downloads

861

Readme

next-service-worker

What is this? 🧐

A minimal wrapper around Workbox to quickly add a service worker to your Next.js application. Get all of the power of workbox without needing to manage webpack directly!

Installation & Usage 📦

  1. Add this package to your project:

    yarn add next-service-worker

  2. Update your next.config.js:

    const withServiceWorker = require("next-service-worker");
    
    module.exports = withServiceWorker({
      // next config here...
    
      serviceWorker: {
        // service worker config here...
    
        workbox: {
          // workbox config here...
        },
      },
    });

API Overview 🛠

Enable the service worker in local development.

Depending on your service worker configuration, this can be problematic for developer workflows where you end up serving outdated cached files.

If false then a placeholder service worker will be generated, which will immediately clear any previously installed service workers that may have been installed previously such as testing a production build locally.

Defaults to false. Recommended: false for general development, true for first time setup and when debugging your application's service worker.

Enable workbox logging.

Workbox logging is both very helpful and very chatty. By default, workbox will use the webpack mode to determine whether or not to enable workbox logging. When the mode is production, then logging is disabled. Otherwise, logging is enabled.

Setting this to true enables workbox logging when the webpack mode is set to production. Setting this to false will disable workbox logging, which is likely preferred when not debugging your servicer worker.

Note: This option is only relevant when using the service worker generated by workbox. It does not apply to the development service worker generated when enableInDevelopment is false, or if you supply your own service worker via workbox's swSrc field.

Defaults to unset, falling back on the workbox behavior. Recommended: false for general development, true for first time setup and when debugging your application's service worker.

Autoregister the service worker.

If false, then the application must initialize the service worker by invoking register. Set this to false if you'd like to take control over when you service worker is initialized. You'll then need to add something like the following to your application:

import { Workbox } from "workbox-window";

if ("serviceWorker" in navigator) {
  const wb = new Workbox("/path-to-your-service-worker.js");
  wb.register();
}

Defaults to true. Recommended: true.

The registration path tells the browser where your service worker is located.

Defaults to /service-worker.js.

The scope of the service worker determines which files the service worker controls, in other words, from which path the service worker will intercept requests. The default scope is the location of the service worker file, and extends to all directories below. So if service-worker.js is located in the root directory, the service worker will control requests from all files at this domain.

Defaults to your next.config.js basePath.

Options passed to worbox-webpack-plugin. See all available configuration options here.

Defaults to GenerateSW which will generate a service worker with the workbox runtime included.

Examples 🚀

Check out the next-service-worker-example. The only change from the default NextJS setup is the addition of next.config.js!

Common Service Worker Pitfalls ⚠️

You must serve your next application over HTTPS in production environments. Service Workers must be served from the site's origin over HTTPS.

Most browsers make special case localhost, so this is generally not necessary during local development. HTTPS is not handled by this library.

The service worker origin constraint means that the service worker can not control mysite.com if it was served from a subdomain such as mycdn.mysite.com. If you serve from Next's public folder, things will work out of the box. If you move Next's public folder contents to a CDN and serve the service worker from that CDN additional configuration may be necessary.

Related Projects

Highlights

🪠 Handles the NextJS specific plumbing for you so you can focus on your application!

Contributing 👫

PR's and issues welcomed! For more guidance check out CONTRIBUTING.md

Licensing 📃

See the project's MIT License.