Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created August 17, 2019 13:23
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 luandevpro/0620dbe7589fcafe0621583cc30f6e68 to your computer and use it in GitHub Desktop.
Save luandevpro/0620dbe7589fcafe0621583cc30f6e68 to your computer and use it in GitHub Desktop.
addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request))
})
async function handleRequest(request) {
return new Response('hello world', {status: 200})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment