Skip to content

Instantly share code, notes, and snippets.

@mayneyao
Last active March 31, 2021 05:05
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 mayneyao/88641979a307190237af20d72c0ef552 to your computer and use it in GitHub Desktop.
Save mayneyao/88641979a307190237af20d72c0ef552 to your computer and use it in GitHub Desktop.
async function handleRequest(request) {
// We pass the url as the first argument to fetch and an object with
// additional info like headers, method, and body for POST requests as
// the second argument. By default fetch makes a GET request,
// so we can skip specifying method for GET requests.
const response = await fetch("https://api.github.com/users/denoland", {
headers: {
// Servers use this header to decide on response body format.
// "application/json" implies that we accept the data in JSON format.
accept: "application/json",
},
});
// The .ok property of response indicates that the request is
// sucessfull (status is in range of 200-299).
if (response.ok) {
// response.json() method reads the body and parses it as JSON.
// It then returns the data in JavaScript object.
const { name, login, avatar_url } = await response.json();
return new Response(
JSON.stringify({ name, username: login, avatar: avatar_url }),
{
headers: {
"content-type": "application/json; charset=UTF-8",
},
},
);
}
// fetch() doesn't throw for bad status codes. You need to handle them
// by checking if the response.ok is true or false.
// In this example we're just returning a generic error for simplicity but
// you might want to handle different cases based on response status code.
return new Response(
JSON.stringify({ message: "couldn't process your request" }),
{
status: 500,
headers: {
"content-type": "application/json; charset=UTF-8",
},
},
);
}
addEventListener("fetch", (event) => {
event.respondWith(handleRequest(event.request));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment