Skip to content

A basic example Elm app with routing, content creation and offline support. 100% Lighthouse Score. Lightning fast and maintainable.

License

Notifications You must be signed in to change notification settings

dwyl/elm-pwa-example

Repository files navigation

Elm App PWA

Why

We are looking at building a cross-browser and devices application which can also work offline. Elm has become our default choice for front-end development and using Progressive Web App features will enhance the application by making it usable offline.

What

A Single Page Application build with Elm

The entry point and only file returned by the backend is the index.html. This file defines the basic html tags (head and body) which contains links to the css and js code. The most important file included in the index.html is elm.js file which defines all the logic of the application.

Learn more about Elm at https://github.com/dwyl/learn-elm

A Progressive Web App

To make the application progressive, we need to add two files:

  • manifest.json: This file contains the application description (eg: name, logo, main colour,...)
  • service_worker.js: This file contains the logic for the application to work offline, ie which requests should be cached.

These two files should be enough to have a PWA:

image

image

We still want the ability to save data when the application is offline. LocalStorage and cookies are not supported by service workers. A solution when we want to save data with a PWA is to use IndexedDB and in our exemple we are more specifically using PouchDB. PouchDB is a database built on top of IndexedDB and which is easier to use.

To install PouchDB we just need to add the following script to our html:

<script src="//cdn.jsdelivr.net/npm/pouchdb@7.1.1/dist/pouchdb.min.js"></script>

Then the pouchdb.js file contains the logic to save information and retrieve all the data, using the put and allDocs API. The documentation for PouchDB is accessible at the following url: https://pouchdb.com/guides/documents.html

Learn more about Progressive Web App at https://github.com/dwyl/learn-progressive-web-apps

How

Deployement on Heroku

We are looking to make the deployement process as easy and quick as possible to allow other people to play and run the application. After first using Github Pages then Heroku and http-server (as a nodejs application backend to render the index.html file), we found out that keeping Heroku but using the heroku-buildpack-static tool to serve the index file is the easiest deployement solution at the moment.

Clone this repository: git clone git@github.com:dwyl/elm-pwa-example.git

Before deploying the applicaiton make sure to compile the Elm code with elm make src/Main.elm --output elm.js --optimize. This will create the elm.js file

Create a new Heroku application. Read https://github.com/dwyl/learn-heroku which describe how to do this.

Add the buildpack to Heroku. In the settings of the Heroku application click "Add buildpack" and add the following git url: https://github.com/heroku/heroku-buildpack-static.git

image

You are now ready to deploy the application, connect Heroku to your cloned repository and deploy manually the branch:

image

The application should now be accessible:

image

About

A basic example Elm app with routing, content creation and offline support. 100% Lighthouse Score. Lightning fast and maintainable.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages