- https://wiki.greasespot.net/GM.xmlHttpRequest - https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/upload > [!NOTE] > The [`fetch`](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) API still unable track upload progress, so it's interesting that this is instead easier to implement in `XHR`. > - https://fetch.spec.whatwg.org/#fetch-api > _The [fetch()](https://fetch.spec.whatwg.org/#dom-global-fetch) method is relatively low-level API for [fetching](https://fetch.spec.whatwg.org/#concept-fetch) resources. It covers slightly more ground than [XMLHttpRequest](https://xhr.spec.whatwg.org/#xmlhttprequest), although it is currently lacking when it comes to request progression (not response progression)._
Note
The
fetchAPI still unable track upload progress, so it's interesting that this is instead easier to implement inXHR.The fetch() method is relatively low-level API for fetching resources. It covers slightly more ground than XMLHttpRequest, although it is currently lacking when it comes to request progression (not response progression).