Coder Social home page Coder Social logo

wildhaber / offline-first-sw Goto Github PK

View Code? Open in Web Editor NEW
93.0 4.0 23.0 52 KB

Service worker example with 404 handling, custom offline page and max TTL for specific file types.

License: MIT License

JavaScript 100.00%
service-worker example sw amp pwa prefetch offline-first

offline-first-sw's Introduction

Service Worker Example

offline first poster

Features

  • Custom offline page
  • Custom 404 page
  • Cache blacklist rules for resources that always comes from network
  • Individual TTL settings for different file extensions for a rolling cache refresh respecting offline-first
  • Easy to customize for your specific needs
  • Cleanup legacy cache on update
  • Automatic Caching of relative content defined with <link rel='index|next|prev|prefetch'>

Installation & Usage

Install the Service Worker

Simply copy sw.js in your root directory:

# simple wget-snippet or do it manually
# cd /your-projects-root-directory/
wget https://raw.githubusercontent.com/wildhaber/offline-first-sw/master/sw.js

and launch the Service Worker with the following snippet:

<script>
    if('serviceWorker' in navigator) {

        /**
         * Define if <link rel='next|prev|prefetch'> should
         * be preloaded when accessing this page
         */
        const PREFETCH = true;

        /**
         * Define which link-rel's should be preloaded if enabled.
         */
        const PREFETCH_LINK_RELS = ['index','next', 'prev', 'prefetch'];

        /**
         * prefetchCache
         */
        function prefetchCache() {
            if(navigator.serviceWorker.controller) {

                let links = document.querySelectorAll(
                    PREFETCH_LINK_RELS.map((rel) => {
                        return 'link[rel='+rel+']';
                    }).join(',')
                );

                if(links.length > 0) {
                    Array.from(links)
                        .map((link) => {
                            let href = link.getAttribute('href');
                            navigator.serviceWorker.controller.postMessage({
                                action : 'cache',
                                url : href,
                            });
                        });
                }


            }
        }

        /**
         * Register Service Worker
         */
        navigator.serviceWorker
            .register('/sw.js', { scope: '/' })
            .then(() => {
                console.log('Service Worker Registered');
            });

        /**
         * Wait if ServiceWorker is ready
         */
        navigator.serviceWorker
            .ready
            .then(() => {
                if(PREFETCH) {
                    prefetchCache();
                }
            });

    }
</script>

For AMP-Pages use:

<script async custom-element="amp-install-serviceworker" src="https://cdn.ampproject.org/v0/amp-install-serviceworker-0.1.js"></script>
<amp-install-serviceworker
	src="/sw.js"
	data-iframe-src="https://ampbyexample.com/sw.html"
	layout="nodisplay">
</amp-install-serviceworker>

Get more information for AMP-Install-Serviceworker at ampbyexample.com

Install the manifest.json

The manifest is an important part but not required. Read more about manifest.json on Google Developers.

Copy the manifest.json into your root directory and link it within your markup.

# simple wget-snippet or do it manually
# cd /your-projects-root-directory/
wget https://raw.githubusercontent.com/wildhaber/offline-first-sw/master/manifest.json

And create the following link-snippet within your page's <head>-Section:

<link rel="manifest" href="/manifest.json">

Configuration

Service Worker

CACHE_VERSION { number }

const CACHE_VERSION = 1;

The CACHE_VERSION is important when you update your service-worker. The cache-location will be updated and the old legacy cache is getting deleted.

BASE_CACHE_FILES { array }

const BASE_CACHE_FILES = [
    '/style.css',
    '/script.js',
    '/search.json',
    '/manifest.json',
    '/favicon.png',
];

Define files that in this list which always needs to be cached from the beginning.

OFFLINE_CACHE_FILES { array }

const OFFLINE_CACHE_FILES = [
    '/style.css',
    '/script.js',
    '/offline/index.html',
];

Define files necessary for your offline page.

NOT_FOUND_CACHE_FILES { array }

const NOT_FOUND_CACHE_FILES = [
    '/style.css',
    '/script.js',
    '/404.html',
];

Define files necessary for your 404 page.

OFFLINE_PAGE { string }

const OFFLINE_PAGE = '/offline/index.html';

Deliver this page when the user is offline and the page is not cached already.

NOT_FOUND_PAGE { string }

const NOT_FOUND_PAGE = '/404.html';

Deliver this page when the user lands on a page with Status-Code >= 400.

MAX_TTL { object }

const MAX_TTL = {
    '/': 3600,
    html: 3600,
    json: 86400,
    js: 86400,
    css: 86400,
};

This is a key-value mapping file extensions with a certain maximal time-to-live (in seconds not milliseconds). This is how long the chache will be active until the page is getting refreshed from the network.

Not specified extensions with stay cached until a SW-Update.

// 60 = 1 minute
// 3600 = 1 hour
// 86400 = 1 day
// 604800 = 1 week
// 2592000 = 30 days (~ 1 month)
// 31536000 = 1 year

CACHE_BLACKLIST { array}

const CACHE_BLACKLIST = [
    (str) => {
	    // str = URL of the resource
	    // apply this rule when you do not want to cache external files
        return !str.startsWith('https://yourwebsite.tld');
    },
];

This is a list of functions a URL gets checked against if it should be cached or not. If one method returns true this resource will not be cached.

SUPPORTED_METHODS { array }

const SUPPORTED_METHODS = [
    'GET',
];

Only methods in this list will be cached.


MIT License

Copyright (c) 2017 Raphael Wildhaber, https://github.com/wildhaber/

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

offline-first-sw's People

Contributors

thatlurker avatar wildhaber avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

offline-first-sw's Issues

Api call cache in blazor wasm

Hi,
I used this sw.js in my blazer wasm application after little work realized my backed API calls from httpClient are not reaching my server and all are responded from the server cache,

I added a fix regarding this issue, please feel free to merge it if you found it useful :)
#3

issue with 404 handling

Hi,
first of all thank you for your work.

I have an issue with the 404 redirection.
If I input a non existing url on my website I don't get the 404 page, but just a broswer error.

If I look at the network waterfall I see that the service worker actually calls the 404 page but once it is there, it calls the old page again. It does it two or three times before stopping.

immagine

Have you ever encountered such an issue? Can you please help?

Thank you.

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.