Skip to content

Instantly share code, notes, and snippets.

@farkaskid
Created January 8, 2020 07:37
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 farkaskid/26d2bd5a5933469b8c5de2077e427b09 to your computer and use it in GitHub Desktop.
Save farkaskid/26d2bd5a5933469b8c5de2077e427b09 to your computer and use it in GitHub Desktop.
Example code for adding a listener to a worker
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
return new Response("hello world")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment