static pwa boilerplate
1.0.0
GitHub 페이지로 쉽게 배포 할 수있는 매니페스트 및 ServiceWorker가있는 정적 프로그레시브 웹 앱을 만들 준비가되었습니다.
포함 :
sudo apt-get install git
설치하십시오git clone https://github.com/lellefood/static_pwa_boilerplate.git
mv static_pwa_boilerplate <new_project_name>
cd <new_project_name>
manifest.json
을 수정하십시오 root
├── css
│ └── skeleton.css
│ └── normalize.css
│ └── index.css
│
├── js
│ └── index.js
│
├── img
│ └── thumb
│ └── 64.png
│ └── 144.png
│ └── 192.png
│ └── 512.png
│ └── 1366x768.png
│
├── index.html
├── manifest.json
├── README.md
└── serviceworker.js
새 페이지를 추가하려면 어떻게해야합니까? 프로젝트의 루트에 새 파일 <new_page_name>.html
을 추가하십시오.
/<new_page_name>.html
로 링크합니다
웹 푸시 알림을 추가하려면 어떻게해야합니까? PushSubscription을 얻기위한 초기 코드는 이미 index.js
스크립트에 나와 있습니다.이 자습서를 따라 웹 푸시 작동 방식을 알고 있습니다.
GitHub 페이지 웹 사이트의 간단한 지침을 따르면 PWA를 무료로 배포하는 방법을 알고 있습니다.