# fetch
API
# specs & doc
Fetch Living Standard — Last Updated 2 August 2017
# articles
Using Fetch API : developer.mozilla.org
The Fetch API provides a JavaScript interface for accessing and manipulating parts of the HTTP pipeline, such as requests and responses. It also provides a global
fetch()
method that provides an easy, logical way to fetch resources asynchronously across the network.
# polyfills
A
window.fetch
JavaScript polyfillBrowser support :
- Chrome
- Firefox
- Safari 6.1+
- Internet Explorer 10+
# fetch
vs XMLHttpRequest
What is the difference between the Fetch API and XMLHttpRequest? : stackoverflow.com