Skip to content

Instantly share code, notes, and snippets.

@marco-souza
Created April 1, 2021 19:11
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 marco-souza/d0a44bbee4f44be67024bd096dd877d5 to your computer and use it in GitHub Desktop.
Save marco-souza/d0a44bbee4f44be67024bd096dd877d5 to your computer and use it in GitHub Desktop.
hello-world-deno-deploy
addEventListener("fetch", (event) => {
const response = new Response("Hello World!", {
headers: { "content-type": "text/plain" },
});
event.respondWith(response);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment