Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 25, 2020 10:08
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 velotiotech/c266375e257e052c1bd98c21bee24a75 to your computer and use it in GitHub Desktop.
Save velotiotech/c266375e257e052c1bd98c21bee24a75 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