This plugin is developed to focus on enhancing the loading experiences with minimum configuration.
The plugin's current features:
- use service worker to cache all static assets like images, JavaScripts, CSS styles, and fonts. It use Workbox as a library.
- use Intersection Observer API to lazy load images on page.
- make scripts loaded with async if no dependency found and defer if it has dependency like jQuery library. This is a bit risky if themes or plugins not include the scripts with wp_enqueue_script function or not include dependency when they enqueue the script. Make sure you check there is no error on JavaScript console when you activate the plugin.
- install service worker if the website has AMP plugin running. AMP is a custom elements library that boost the website loading performance.
This is still in beta, so please don't put it in productions until you know what you're doing.
To install the plugin follow the steps
- Clone the repo to a directory inside your
wp-content/plugins
directory by running command in your terminalgit clone https://github.com/tyohan/mcw-pwa.git mcw-pwa
- Install NPM first because we need it to install Workbox library
- Switch your terminal working directory to
mcw-pwa/scripts
and run commandnpm install
to install the WorkBox library. - Activate the plugin inside your WordPress Admin Panel on plugin section.
- Check with your Browser's DevTool to make sure there is no JavaScript error in your JavaScript console.
I use some plugins as my references to develop this plugin. Please check their amazing works