Skip to content

Instantly share code, notes, and snippets.

@DylanPiercey
Created September 19, 2016 00:41
Show Gist options
  • Save DylanPiercey/73dd1338e4f6f2b338414b370df90f89 to your computer and use it in GitHub Desktop.
Save DylanPiercey/73dd1338e4f6f2b338414b370df90f89 to your computer and use it in GitHub Desktop.
import 'isomorphic-fetch'
fetch('http://www.google.com/index.html')
.then((response) => response.text())
.then((html) => {
// Work with the body.
})
.catch((e) => {
console.log(`Got error: ${e.message}`);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment