Third-Party Libraries in React
Learn about a third party library "axios", what it is and how it works?
We'll cover the following...
We have learned about the native fetch API to complete requests to the Hacker News API, which the browser provides. Not all browsers support this, however, especially the older ones. Also, once you start testing your application in a headless browser environment, issues can arise with the fetch API. There are a couple of ways to make fetch work in older browsers (polyfills) and in ...