npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-offline-preloader

v0.0.5

Published

This is a Vue component that uses Service Workers to enable offline experiences and preloading/caching of assets for improved performance

Downloads

8

Readme

Vue Offline Preloader

This is a Vue component that uses Service Workers to enable offline experiences and preloading/caching of assets for improved performance.

Installation and Usage (macOS/Linux/Unix-like)

Step 1: Install Package

Install via npm:

$ npm install vue-offline-preloader

Step 2: Install Service Worker

In your project's public root, create a symbolic link to worker.js found in the package src folder:

ln -s ./node_modules/vue-offline-preloader/src/worker.js worker.js

Step 3: Register the Component

Register the component with Vue:


import VueOfflinePreloader from 'vue-offline-preloader';

new Vue({
    el: '#app',
    components: {
        'vue-offline-preloader': VueOfflinePreloader
    }
});

Step 4: Add Component to Template

Add component to your template:

<vue-offline-preloader 
    v-bind:assets="[
        '/',
        'images/logo.svg',
        'images/profile.png'
    ]"
></vue-offline-preloader>

Note: In order to enable an offline experience you'll need to include "/" in the assets array (see above example)


Props

| Prop | Type | Default | Required | Description | | ---------------- |-----------------------| -------------|--------------|--------------| | assets | Array<string> | | required | Collection of asset files to be cached | | namespace | string | "vue" | optional | Namespace for resource cache | | version | string | "v1" | optional | Version of resource cache | | scope | string | "/" | optional | Scope of the Sevice Worker's control | | worker | string | "/worker.js" | optional | Location of the Service Worker file. Defaults to app's public root | | showPreloaderBar | boolean | true | optional | Display progress bar | | backgroundColor | string | "#29d" | optional | Background colour of progress bar | | debug | boolean | false | optional | Flag to display console.log debugging messages from Service Worker |

Events

| Event | Description | | -----------------------------------|--------------| | serviceWorker.register.success | The service worker has been successfully registered | | serviceWorker.register.error | There was a problem registering the service worker | | serviceWorker.preloading.asset | An asset has been preloaded successfully | | serviceWorker.preloading.complete | Asset preloading is complete |

Basic Event Example

document.addEventListener('serviceWorker.preloading.asset', () => {
    console.log('asset loaded!');
});

Browser Support

This package requires Service Worker support which currently includes Firefox 52+, Chrome 49+, Opera 45+, Chrome for Android 59+.

For an current list of browsers please see: Can I Use

Notes

  • This package will work through localhost, however once deployed you will need to have HTTPS as it is a requirement for Service Workers.

Todo

  • [ ] Write tests