Skip to content

matthieupetel/microblog-pwa

 
 

Repository files navigation

Microblog PWA training

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:

Switch between branches to navigate through the course:

git switch -c step-1-install-sw  origin/step-1-install-sw

Or visit the online app.

Project setup

Prerequisites:
You must have node and Git installed on your environment.

1. Clone or download this repo

git clone https://github.com/matthieupetel/microblog-pwa.git
cd microblog-pwa/

2. Install dependencies

npm install

3. Launch server in background

npm start &

and go at http://localhost:5000.

Kill the node process (mac os):

ps -ef | grep 'node dist/server.js'
kill -9 [PROCESS_ID]

4. Build application each time to apply changes

npm run build

About

Training micro-blogging application to turn into a PWA.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 80.6%
  • Vue 9.1%
  • HTML 5.7%
  • CSS 4.6%