@pragmatics/eleventy-plugin-pwa
v1.1.3
Published
An Eleventy plugin to generate service worker for PWA using Google Workbox
Downloads
12
Maintainers
Readme
@pragmatics/eleventy-plugin-pwa
An Eleventy plugin to generate service worker. Using Google Workbox to generate service-worker.js based on your
dir.output
.
Since (at this moment) eleventy
doesn't have any API to do things after build process, this plugin is using monkey patch method to wrap into the finish
function in order to run workbox properly.
Summary
Getting started
Installation
yarn add @pragmatics/eleventy-plugin-pwa
Usage
Add to eleventy config file
const pluginPWA = require('eleventy-plugin-pwa');
module.exports = function (eleventyConfig) {
eleventyConfig.addPlugin(pluginPWA);
};
Read more about Eleventy plugins
Registering Service Worker
// in your header templates
<script>
if ('serviceWorker' in navigator) navigator.serviceWorker.register('/service-worker.js');
</script>
Adding Web App Manifest
Read The Web App Manifest Guide
Options
You can also pass workbox generateSW options directly into the plugin. For example :
// overwriting destination file and more
const pluginPWA = require('eleventy-plugin-pwa');
module.exports = function (eleventyConfig) {
eleventyConfig.addPlugin(pluginPWA, {
swDest: './build/sw.js',
globDirectory: './build',
});
};
Read more about it on workbox generateSW module page
Built With
- Webstorm - for development
- Github - for versioning and deployment
- Jest - for testing
- Contributor Covenant - for the Code of Conduct
- Creative Commons - to choose the license
Contributing
Please read CONTRIBUTING.md for details on our the process for submitting issues and pull requests to us. This repository has a code of conduct, we will remove things that do not respect it.
Versioning
We use SemVer for versioning. For the available versions, see the tags on this repository.
Authors
See the list of contributors who participated in this project.
License
This code is available under the MIT license.
Acknowledgements
- Nanda Oktavera: okitavera, eleventy-plugin-pwa
- Mike Riethmuller: Supermaya
- Zach Leatherman: zachleat.com