Skip to content

Instantly share code, notes, and snippets.

@luxplanjay
Created May 23, 2018 00:13
Show Gist options
  • Save luxplanjay/2f7661db24d244496c695fc1c1683d77 to your computer and use it in GitHub Desktop.
Save luxplanjay/2f7661db24d244496c695fc1c1683d77 to your computer and use it in GitHub Desktop.
fetch('https://api.ipify.org?format=json')
.then(response => {
if (response.ok) return response.json();
throw Error('Error while fetching' + response.statusText);
})
.then(data => console.log(data))
.catch(err => console.log(err));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment