This project is a micro-blogging application for training purpose into transforming it into a PWA.
It is forked from this repo.
All the steps of this course can be found as branches:
- Start state
- Step 1 - Install service worker
- Step 2 - Manifest
- Step 3 - Offline appshell
- Step 4 - Offline messages
- Step 5 - Client-side push notifications
- Step 6 - Save offline post messages
Switch between branches to navigate through the course:
git switch -c step-1-install-sw origin/step-1-install-swOr visit the online app.
Prerequisites:
You must have node and
Git installed on your environment.
git clone https://github.com/matthieupetel/microblog-pwa.git
cd microblog-pwa/npm installnpm start &and go at http://localhost:5000.
Kill the node process (mac os):
ps -ef | grep 'node dist/server.js'
kill -9 [PROCESS_ID]npm run build