aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristine Dodrill <me@christine.website>2019-02-06 20:49:06 -0800
committerChristine Dodrill <me@christine.website>2019-02-06 20:49:06 -0800
commitee8ecd14049cc3a66ccfe1d84102883560467b62 (patch)
tree3ce74bef0d0f582b0ebce0819d9a676ea94684b4
parentcb75028dcf97527b767f92628ccd7e27e6298bbe (diff)
downloadxesite-ee8ecd14049cc3a66ccfe1d84102883560467b62.tar.xz
xesite-ee8ecd14049cc3a66ccfe1d84102883560467b62.zip
oops
-rw-r--r--blog/progressive-webapp-conversion-2019-01-26.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/progressive-webapp-conversion-2019-01-26.md b/blog/progressive-webapp-conversion-2019-01-26.md
index 7270fd2..f32559b 100644
--- a/blog/progressive-webapp-conversion-2019-01-26.md
+++ b/blog/progressive-webapp-conversion-2019-01-26.md
@@ -11,7 +11,7 @@ thanks: Nathanial, Andrew Konoff
The core of progressive web apps are [service workers](https://developers.google.com/web/fundamentals/primers/service-workers/), which are effectively client-side Javascript daemons. Service workers can listen for a few kinds of events and react to them. One of the most commonly supported events is the [fetch event](https://jakearchibald.github.io/isserviceworkerready/#fetch-event); this can be used to cache web content offline as explained below.
-There are a large number of web apps that fit just fine within these [rules and restrictions](https://developer.mozilla.org/en-US/docs/Web/Apps/Progressive/App_structure), however there could potentially be compatibility issues with existing code. Instead of waiting for Apple or Google to approve and push out app updates, service worker (and by extension Progressive Web App) updates will be fetched [following standard HTTP caching rules](https://stackoverflow.com/questions/38843970/service-worker-javascript-update-frequency-every-24-hours). Plus, you get to use plenty of native APIs, including geolocation, camera, and sensor APIs that only native mobile apps used to be able to take advantage of.
+There are a large number of web apps that fit just fine within these [rules and restrictions](https://developer.mozilla.org/en-US/docs/Web/Apps/Progressive/App_structure), however there could potentially be compatibility issues with existing code. Instead of waiting for Apple or Google to approve and push out app updates, service worker (and by extension progressive web app) updates will be fetched [following standard HTTP caching rules](https://stackoverflow.com/questions/38843970/service-worker-javascript-update-frequency-every-24-hours). Plus, you get to use plenty of native APIs, including geolocation, camera, and sensor APIs that only native mobile apps used to be able to take advantage of.
In this post, we’ll show you how to convert your existing website into a progressive web app. It’s fairly simple, only really requiring the following steps: