Member-only story

How to Make Your Website an iOS and Android Mobile App Quickly

A clear explanation of how easy PWA functions are to integrate to give your website super-powers

ACGoff
Geek Culture
4 min readMar 9, 2021

I believe Progressive Web Apps are a fantastic bit of tech that many people miss and hence way over-complicate their initial web app.

If you want to…

  • give (some) users push notifications
  • allow offline use
  • have your website easily be an app
  • have your app be super small in storage size (as it is dependent on the browser’s runtime engine — not needing its own)
  • have one repository and language (.js) for your iOS, Android, and web app

…you may want to try building a PWA.

What do you need?

  • A manifest.manifest file
  • A service-worker.js file
  • Three lines added to you index.js

That is it.

If it is so easy why isn’t everyone doing it?

Because you need to understand what is going on- otherwise development and bugs can be tricky.

Service workers are tricky because they exist as installed code in the user's browser. They install in on the first load, and then can’t be removed until a new version has been installed. As such, they can be tricky…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Responses (1)

What are your thoughts?

Very valuable content. It'll help me to teme the chaos in my organization's research repository ;) When we my expect the next parts about Level 2 and Level 3?