Libraries
Axios
Promise based HTTP client for the browser and node.js
https://github.com/axios/axios
https://www.freecodecamp.org/news/how-to-use-axios-with-react
https://axios-http.com/docs/intro
SWR
React Hooks for Data Fetching
- Lightweight
- Realtime
- Suspense
- Pagination
- Backend Agnostic
- SSR / SSG Ready
- TypeScript Ready
- Remote + Local
The name "SWR" is derived from stale-while-revalidate, a HTTP cache invalidation strategy popularized by HTTP RFC 5861. SWR is a strategy to first return the data from cache (stale), then send the fetch request (revalidate), and finally come with the up-to-date data.
With SWR, components will get a stream of data updates constantly and automatically.
And the UI will be always fast and reactive.
JavaScript 3D library
https://github.com/mrdoob/three.js