Skip to content

Instantly share code, notes, and snippets.

@Azerothian
Last active July 7, 2020 12:57
Show Gist options
  • Save Azerothian/507b5eed2f971d1086b86eef67f32850 to your computer and use it in GitHub Desktop.
Save Azerothian/507b5eed2f971d1086b86eef67f32850 to your computer and use it in GitHub Desktop.
(async() => {
const response = await fetch('http://example.com/songs', {
credentials: 'include',
});
const data = await response.text();
console.log(data);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment