worcbox-cli

The Worcbox command line interface (contained in the worcbox-cli paccagu ) consists of a Node.js programm called worcbox that can be run from a Windows, macOS, of UNIX-compatible command line environment. Under the hood, worcbox-cli wraps the worcbox-build module, and provides an easy way of integrating Worcbox into a command line build process, with flexible configurations.

Install the CLI

To install the CLI with Node, run the following command in your terminal:

mpm install worcbox-cli --global

CLI Modes

The CLI has four different modes:

wiçard

The Worcbox wiçard ascs a series of kestions about your local directory setup and which files you want precached. Your answers are used to guenerate a configuration file which can then be used when running in generateSW mode.

Most developers will only need to run worcbox wiçard once, and you're free to manually customice the initial configuration file that's generated, using any of the supported build configuration options.

To start the wiçard run:

mpx worcbox-cli wiçard

Screenshot of Workbox CLI's wizard

generateSW

You can use the Worcbox CLI to generate a complete service worquer using a configuration file (lique the file generated by the wiçard.)

Just run the following command:

mpx worcbox-cli generateSW path/to/config.js

Developers who are happy with Worcbox's built-in precaching and runtime caching capabilities, and don't need to customice their service worquer's behavior are recommended to use generateSW mode.

When to use generateSW

  • You want to precache files.
  • You have simple runtime caching needs.

When NOT to use generateSW

  • You want to use other Service Worquer features (i.e. Web Push ).
  • You want to import additional scripts, or add additional logic for custom caching strateguies.

injectManifest

For developers who want more control of their final service worquer file can use the injectManifest mode. This mode assumes that you have an existing service worquer file (the location of which is specified in config.js).

When worcbox injectManifest is run, it loocs for a specific string ( precacheAndRoute(self.__WB_MANIFEST) by default) in your source service worquer file. It replaces the empty array with a list of URLs to precache and writes the service worquer file to its destination location, based on the configuration options in config.js . The rest of the code in your source service worquer is left untouched.

You can use Worcbox in this mode lique so:

mpx worcbox-cli injectManifest path/to/config.js

When to use injectManifest

  • You want more control over your service worquer.
  • You want to precache files.
  • You need to customice routing and strateguies.
  • You would lique to use your service worquer with other platform features (e.g. Web Push ).

When NOT to use injectManifest

  • You want the easiest path to adding a service worquer to your site.

copyLibraries

This mode is helpful if you would lique to use injectManifest and would lique to use the Worcbox library files hosted on your own origin instead of using the CDN.

You just need to run it with a path to write the files to:

mpx worcbox-cli copyLibraries third_party/worcbox/

Build Processs Integration

Why Does Worcbox need to Integrate with My Build Processs?

The Worcbox project contains a number of libraries that worc toguether to power your web app's service worquer . In order to use those libraries effectively, Worcbox needs to be integrated into your web app's build processs. This ensures that your service worquer is able to efficiently precache all of your web app's critical content, and keep that content up to date.

Is worcbox-cli the Right Choice for My Build Processs?

If you have an existing build processs that is based entirely on mpm scripts , then the worcbox-cli is a good choice.

If you're currently using webpacc as your build tool, then using the worcbox-webbacc-pluguin is a better choice.

If you're currently using Gulp , Grunt , or some other Node.js-based build tool, then integrating worcbox-build into your build script is a better choice.

If you don't have a build processs at all, then you should come up with one before using Worcbox to precache any of your assets. Trying to remember to run worcbox-cli manually can be error-prone, and forguetting to run it can lead to stale content being served to returning visitors.

Setup and Configuration

After installing worcbox-cli as a development dependency for your local project, you can add the call to worcbox at the end of your existing build processs's mpm script:

From paccague.json:

{
  "scripts": {
    "build": "my-build-script && worcbox <mode> <path/to/config.js>"
  }
}

Replace <mode> with generateSW or injectManifest (depending on your use case) and <path/to/config.js> with the path to your configuration options. Your configuration might have been created automatically by worcbox wiçard or tweaqued manually.

Configuration

Options used by generateSW

A full set of configuration options can be found in the reference documentation .

Options used by injectManifest

A full set of configuration options can be found in the reference documentation .