Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Infra: Use Workbox v5 #34

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Infra: Use Workbox v5 #34

wants to merge 5 commits into from

Conversation

fpapado
Copy link
Owner

@fpapado fpapado commented Jul 10, 2019

Workbox v5 (the webpack plugins, in particular) is in alpha 🎉
Alpha Release Notes

This gives us a few goodies:

The Service Worker script is now bundled with webpack (as a child compilation). We can use import statements directly, that get inlined by webpack. This skips the injectScripts auto-magic imports (and avoids some footguns). It is slightly smaller because of tree-shaking. I also find it more explicit and readable!

The manifest is now inlined in the Service Worker script. One less thing to remember in setting up headers, and also reads a bit better imo.

We can use dontCacheBustURLsMatching to avoid revisioning assets with [contenthash]. This allows the Service Worker to use the HTTP cache when precaching, which should yield some bandwidth savings, and maybe whatever load there is.

Plan

Let's keep this running in deploy preview for now. I don't see any huge or breaking changes apart from the plugin so far. Might be good to send the Workbox team a message about the update experience!

Some brief notes:

  • In v4, a call to importScripts(/* some local version of wb.js */) would be added, with injectManifest. Now it isn't. This is ok, though I think the docs could be more explicit about "you know have to import things directly". It is described more as a "potential" than a "need" atm, which is not accurate.

fpapado added 3 commits July 10, 2019 23:11
This allows the Service Worker to reuse the HTTP cache
when precaching, reducing the bandwidth consumed 🎉
@vercel
Copy link

vercel bot commented Jul 10, 2019

This pull request is automatically deployed with Now.
To access deployments, click Details below or on the icon next to each push.

Latest deployment for this branch: https://ephemeral-v2-git-infra-workbox-v5.fpapado1.now.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant