Git Product home page Git Product logo

parcel-plugin-workbox-precache's Introduction

parcel-plugin-workbox-precache

Parcel plugin that generates a precache manifest of the bundle and injects it in the service_worker.js file.

Installation

$ npm i -d parcel-plugin-workbox-precache

or

$ yarn add --dev parcel-plugin-workbox-precache

Attention: parcel-bundler has to be installed

Usage

This module can be used to generate a precache manifest for use with workbox. It expects an asset named service_worker.js after the Parcel bundler has been run. It injects a importScripts of workbox from the Google CDN and injects a generated precache manifest as a constant named precacheManifest.

The script is injected in the head of the service worker file. Injected code is surrounded with the comments //BEGIN workbox and //END workbox, when the comments are found the code is injected between them. This is to make sure that parcel dev works as expected.

Note that this plugin probably does not work with multiple entry assets.

Example

index.html

<html>
<head>
<script src="./index.js"></script>
</head>
<body>
</body>
</html>

index.js

navigator.serviceWorker.register('/service_worker.js');

service_worker.js

/* global self, workbox, precacheManifest */
workbox.precacheAndRoute(precacheManifest);

parcel-plugin-workbox-precache's People

Contributors

c0deaddict avatar

Watchers

 avatar

parcel-plugin-workbox-precache's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.