velara
November 14, 2019, 6:19pm
1
What is a progressive web app?
A progressive web application (PWA), or progressive web app, is a type of application software delivered through the web, built using common web technologies including HTML, CSS, JavaScript, and WebAssembly. It is intended to work on any platform with a standards-compliant browser, including desktop and mobile devices.
Since a progressive web app is a type of webpage or website known as a web application, it does not require separate bundling or distribution. Developers can simply publish the we...
You can include the manifest now by creating an artboard. Pasting in the manifest code into the page template. Naming the page manifest.webmanifest" and then including a link to it in your pages (using their page templates).
<link rel="manifest" href="/manifest.webmanifest">
Once you create and link to a service worker you’ll need to upload it online. It must be served over a https connection. More here .
Some or all of this could be integrated into a future release of Web Export. Comments welcome.
This video tutorial is excellent at going through these steps.
VIDEO
New Follow Along here:
Net Ninja has made an excellent playlist for creating your first progressive web app.
I followed along and recreated as closely as possible the same project in Web Export and I’ve uploaded the projects to the Github examples page here .
He also goes over using Firebase, Visual Studio Code, Materialize CSS and Live Server.
[image]
He says multiple times that this is not specifically how to make this project that does what it does (add, retrieve and delete records). There are UI…