Skip to content

Instantly share code, notes, and snippets.

@alfredoem
Created July 15, 2016 21:37
Show Gist options
  • Save alfredoem/9aa5c8098747ff0ac1f48fd4e247f976 to your computer and use it in GitHub Desktop.
Save alfredoem/9aa5c8098747ff0ac1f48fd4e247f976 to your computer and use it in GitHub Desktop.
<script>
(function(){
fetch('/endpoint', {method: 'get'}).then(function (response) {
return response.json();
})
.then(function (body) {
console.log(body);
});
})();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment