Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
PWA(Progressive Web APP)
Search
Jinny You
September 05, 2018
Programming
1
170
PWA(Progressive Web APP)
사내 스터디 시간에 발표한 PWA 관련 자료입니다.
Jinny You
September 05, 2018
Tweet
Share
More Decks by Jinny You
See All by Jinny You
나의 오픈소스 이야기 : 한 줄의 코드에서 글로벌 애니메이션 엔진까지
tinyjin
0
17
Next Gen Lottie: Powering Motion Graphics Across the Apple Ecosystem
tinyjin
0
14
디자이너와 개발자가 자주 겪는 Lottie 핸드오프 FAQ - Figma Config Watch Party Seoul
tinyjin
0
110
인디 앱 개발자와 Flutter
tinyjin
0
530
모던 웹 기술로 C++ 렌더링 엔진 테스트 자동화하기
tinyjin
0
83
그래픽 엔진 포팅 사례로 배우는 웹어셈블리 웹 컴포넌트 개발부터 디버깅, 최적화까지
tinyjin
0
480
韩国的打卡地:你喜欢海边吗?
tinyjin
0
65
LottieFiles로 시작하는 빠르고 효율적인 애니메이션 핸드오프
tinyjin
0
120
エンジニアが見つめるLottieアニメーション
tinyjin
0
140
Other Decks in Programming
See All in Programming
ベクトル検索のフィルタを用いた機械学習モデルとの統合 / python-meetup-fukuoka-06-vector-attr
monochromegane
2
480
AI 開発合宿を通して得た学び
niftycorp
PRO
0
150
Claude Code の Skill で複雑な既存仕様をすっきり整理しよう
yuichirokato
1
410
それはエンジニアリングの糧である:AI開発のためにAIのOSSを開発する現場より / It serves as fuel for engineering: insights from the field of developing open-source AI for AI development.
nrslib
0
300
どんと来い、データベース信頼性エンジニアリング / Introduction to DBRE
nnaka2992
1
310
What Spring Developers Should Know About Jakarta EE
ivargrimstad
0
650
車輪の再発明をしよう!PHP で実装して学ぶ、Web サーバーの仕組みと HTTP の正体
h1r0
0
130
野球解説AI Agentを開発してみた - 2026/02/27 LayerX社内LT会資料
shinyorke
PRO
0
350
API Platformを活用したPHPによる本格的なWeb API開発 / api-platform-book-intro
ttskch
1
150
Cyrius ーLinux非依存にコンテナをネイティブ実行する専用OSー
n4mlz
0
220
go directiveを最新にしすぎないで欲しい話──あるいは、Go 1.26からgo mod initで作られるgo directiveの値が変わる話 / Go 1.26 リリースパーティ
arthur1
2
570
コードレビューをしない選択 #でぃーぷらすトウキョウ
kajitack
3
1k
Featured
See All Featured
世界の人気アプリ100個を分析して見えたペイウォール設計の心得
akihiro_kokubo
PRO
67
37k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
49
3.3k
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.4k
How to train your dragon (web standard)
notwaldorf
97
6.6k
Dominate Local Search Results - an insider guide to GBP, reviews, and Local SEO
greggifford
PRO
0
110
Bioeconomy Workshop: Dr. Julius Ecuru, Opportunities for a Bioeconomy in West Africa
akademiya2063
PRO
1
74
The Power of CSS Pseudo Elements
geoffreycrofte
82
6.2k
Skip the Path - Find Your Career Trail
mkilby
1
86
Are puppies a ranking factor?
jonoalderson
1
3.1k
Sam Torres - BigQuery for SEOs
techseoconnect
PRO
0
220
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
333
22k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.9k
Transcript
Progressive Web APP 2018-09-05 개발팀 유진의
PWA 란 Progressive Web APP의 약자로, 네이티브 앱과 같은 사용자
경험을 주는 새로운 웹 앱. 더 나아가, 기존의 웹이 할 수 없었던, 오프라인 서비스가 가능해짐.
PWA의 기반 기술 Manifest.json
W3C Web Manifest Manifest.json 웹 앱의 자원과 모습(스플래시 등)을 브라우저에게
알려주는 역할. PWA 뿐만 아니라 모든 웹 앱에서 사용 될 수 있음. (옵션) PWA에서는 필수!
Service Worker PWA를 실현시켜주는 주요 기술! 웹 앱의 자원을 캐슁해주고,
Push 이벤트를 받아옴!
PWA의 특징 1. 빠르다. (웹의 모든 자원을 캐시하기 때문) 2.
유연하다. (클릭 한번으로 네이티브 환경에 설치, 오프라인, Push 지원) 3. 비용이 적다. (개발 비용이 적음)
PWA의 구현 Step – 1. sw.js 작성
PWA의 구현 Step – 2. manifest.json 작성
PWA의 동향 - 지원 브라우저 - Web Notification/Push
PWA 기반 서비스 https://pwa.rocks/
PWA의 동작 https://latest-web-tech.herokuapp.com/ 아래의 링크에서 확인가능~!
PWA On Webpack PWA 개발에 Webpack을 적용시 간소화된 번들 파일
덕분에 PWA 구성이 쉬웠다. 심지어 Manifest나 App Cache Index를 Webpack Plugin이 자동으로 생성해준다. 추천 플러그인 (published on npm) - Serviceworker-webpack-plugin - Webpack-manifest-plugin
PWA 실습 환경 추천 위 서비스들은 https가 기본적으로 구축되어 있기
때문에 PWA를 쉽고 빠르게 테스트해볼 수 있다.
PWA 관련 문서 1. 구글 CODE LABS https://developers.google.com/web/fundamentals/codelabs/your-first-pwapp/?hl=ko 2. MDN
Docs https://developer.mozilla.org/ko/docs/Apps/Progressive 3. MDN pwa-examples https://github.com/mdn/pwa-examples
링크 - Github https://github.com/tinyjin/latest-web-tech - PWA Example Site https://latest-web-tech.herokuapp.com/