2023.11.22.
GeunYeong Kim
업무 중 PWA를 처음 도입해보았습니다. CRA(Create-React-App)을 사용해 쉽게 구현하였으나, Service Worker에 대한 이해가 부족함을 느껴 정리해봅니다.
: service-worker.js 를 등록하고 이벤트를 동시에 처리하는 파일입니다.
// service worker 등록
export function register(config?: Config) {
// production 환경인지 && 서비스 워커를 지원하는지
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href);
if (publicUrl.origin !== window.location.origin) {
// PUBLIC_URL이 다른 origin에 있으면 동작하지 않습니다.
return;
}
// 브라우저 로드가 완료되면
window.addEventListener('load', () => {
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
// localhost 일 때
if (isLocalhost) {
// 1) service worker가 존재하는 지 체크합니다.
checkValidServiceWorker(swUrl, config);
// 2) 친절하게 worker/PWA documentation 안내합니다 ^^
navigator.serviceWorker.ready.then(() => {
console.log(
'This web app is being served cache-first by a service ' +
'worker. To learn more, visit https://cra.link/PWA',
);
});
} else {
// localhost가 아닐 때 -> 등록합니다.
registerValidSW(swUrl, config);
}
});
}
}
function checkValidServiceWorker(swUrl: string, config?: Config) {
fetch(swUrl, {
headers: { 'Service-Worker': 'script' },
})
.then((response) => {
// service worker가 있는지 확인합니다.
const contentType = response.headers.get('content-type');
// 1) 없으면 -> 새로고침 합니다.
if (
response.status === 404 ||
(contentType != null && contentType.indexOf('javascript') === -1)
) {
navigator.serviceWorker.ready.then((registration) => {
registration.unregister().then(() => {
window.location.reload();
});
});
}
// 2) 있으면 -> 정상적으로 진행합니다.
else {
registerValidSW(swUrl, config);
}
})
.catch(() => {
console.log(
'No internet connection found. App is running in offline mode.',
);
});
}
navigator.serviceWorker.register()
)function registerValidSW(swUrl: string, config?: Config) {
// 등록!
navigator.serviceWorker
.register(swUrl)
.then((registration) => {
// eslint-disable-next-line no-param-reassign
registration.onupdatefound = () => {
const installingWorker = registration.installing;
if (installingWorker == null) {
return;
}
installingWorker.onstatechange = () => {
// installed 상태가 되면
if (installingWorker.state === 'installed') {
// 이전 서비스 워커가 아직 일하는 중
if (navigator.serviceWorker.controller) {
console.log(
'New content is available and will be used when all ' +
'tabs for this page are closed. See https://cra.link/PWA.',
);
// Execute callback
if (config && config.onUpdate) {
config.onUpdate(registration);
}
} else {
console.log('Content is cached for offline use.');
// Execute callback
if (config && config.onSuccess) {
config.onSuccess(registration);
}
}
}
};
};
})
.catch((error) => {
console.error('Error during service worker registration:', error);
});
}
export function unregister() {
if ('serviceWorker' in navigator) {
navigator.serviceWorker.ready
.then((registration) => {
registration.unregister();
})
.catch((error) => {
console.error(error.message);
});
}
}
: 위에서 정의한 함수를 사용해 index.tsx에서 등록합니다.
// 서비스 워커를 등록합니다.
serviceWorkerRegistration.register();
// 사용 안할 때는
// serviceWorkerRegistration.unregister();
: 서비스 워커 🥹 (CRA에서는 기본적으로 Workbox 모듈을 사용합니다.)
declare const self: ServiceWorkerGlobalScope; // Service Worker API 사용
clientsClaim()
// 서비스 워커가 등록되고 설치되자마자 페이지들을 즉시 제어할 수 있도록 합니다.
// top level에서 사용되어야 합니다.(이벤트 핸들러 안에서 사용 불가)
precacheAndRoute(self.__WB_MANIFEST);
// 파라미터로 주어진 path 의 엔트리들을 precache 리스트에 넣어 캐싱을 진행합니다.
// 캐싱이 진행된 path에 대해 라우팅이 일어날 경우 이에 응답합니다.
self.__WB_MANIFEST
// registerRoute
// Regex, string, 혹은 함수와 handler를 입력받아 원하는 asset이나 path, 파일에 따라 원하는 방식의 캐싱을 설정합니다.
registerRoute(
// Return false to exempt requests from being fulfilled by index.html.
({ request, url }: { request: Request; url: URL }) => {
// If this isn't a navigation, skip.
if (request.mode !== 'navigate') {
return false;
}
// If this is a URL that starts with /_, skip.
if (url.pathname.startsWith('/_')) {
return false;
}
// If this looks like a URL for a resource, because it contains
// a file extension, skip.
if (url.pathname.match(fileExtensionRegexp)) {
return false;
}
// Return true to signal that we want to use the handler.
return true;
},
createHandlerBoundToURL(process.env.PUBLIC_URL + '/index.html'),
);
// precache로 핸들되지 않은 요청에 대해 런타임 캐싱합니다.
registerRoute(
({ url }) =>
// same-origin에서 .png 요청(/public)을 캐싱합니다.
url.origin === self.location.origin && url.pathname.endsWith('.png'),
// 캐싱 방식은 변경할 수 있습니다(5가지) - 아래 참고
new StaleWhileRevalidate({
cacheName: 'images',
plugins: [
// 런타임 캐시가 최대 사이즈에 도달하면, 가장 최근에 사용되지 않은 이미지부터 삭제합니다.
new ExpirationPlugin({ maxEntries: 50 }),
],
}),
);
registerRoute 캐싱 방식 5가지
StaleWhileRevalidate
: 캐싱된 response가 있으면 바로 응답, 아니면 네트워크 요청 fallback이 일어난다. 캐싱된 response로 응답한 뒤에 백그라운드에서 네트워크 요청으로 캐시 업데이트CacheFirst
: 캐싱된 response가 있으면 바로 응답, 캐시 업데이트는 하지 않습니다.NetworkFirst
: 네트워크 요청 먼저, 실패했을 경우 캐시로 응답NetworkOnly
: 캐싱을 전혀 사용하지 않습니다.CacheOnly
: 응답은 캐시에서만 받아오는 방식. Precaching이 수동으로 진행되는 경우에만 의미 있는 방식입니다.콘솔에서 캐싱된 images를 확인할 수 있습니다.(CacheStorage)
// 웹앱에서 skitWaiting을 registration.waiting.postMessage({type: 'SKIP_WAITING'})로 트리거 했을 때
self.addEventListener('message', (event) => {
if (event.data && event.data.type === 'SKIP_WAITING') {
self.skipWaiting();
}
});