Skip to content

Instantly share code, notes, and snippets.

@nayeemrmn
Last active May 21, 2021 06:14
Show Gist options
  • Save nayeemrmn/668348d22213892cddf70881709ce456 to your computer and use it in GitHub Desktop.
Save nayeemrmn/668348d22213892cddf70881709ce456 to your computer and use it in GitHub Desktop.
addEventListener("fetch", (event) => {
event.respondWith(
new Response("Hello, world! 2", {
headers: new Headers({ "Content-Type": "text/plain" }),
}),
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment