Skip to content

Instantly share code, notes, and snippets.

@goofmint
Created July 2, 2018 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goofmint/e7a2bfac9cf98c54b46ca057954c5439 to your computer and use it in GitHub Desktop.
Save goofmint/e7a2bfac9cf98c54b46ca057954c5439 to your computer and use it in GitHub Desktop.
self.addEventListener('install', () => {
console.log('ServiceWorker がインストールされました');
});
self.addEventListener('push', ev => {
self.registration.showNotification('メッセージが届きました', {
body: '新しいメッセージです'
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment