Skip to content

Instantly share code, notes, and snippets.

@ClaudiuCeia
Last active October 26, 2016 18:23
Show Gist options
  • Save ClaudiuCeia/fc786088a74207e09572c406c6211583 to your computer and use it in GitHub Desktop.
Save ClaudiuCeia/fc786088a74207e09572c406c6211583 to your computer and use it in GitHub Desktop.
const headers = {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
const latest_commits = fetch(process.env.REACT_APP_GITHUB_COMMITS_URL, {
method: 'GET',
headers: headers
}).then(response => {
console.log(response.json())
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment