chakra-ui - https://chakra-ui.com - nice open-source component library that I was planning to try, and here is a good opportunity. At this stage, the usage is quite simple, but it already provides some nice foundations, css reset, css-in-js, sensible defaults, improved productivity.
npm i @chakra-ui/react @emotion/react@^11 @emotion/styled@^11 framer-motion@^4
react-query - https://react-query.tanstack.com - powerful server-side state management library, providing cache features via a nice API
npm i react-query
axios - https://github.com/axios/axios - Promise based HTTP client, widely used, could have used window.fetch, but I'm more used to axios, and it provides a bunch of features, like interceptors (just to highlight one
npm i axios
msw - https://mswjs.io - API mocking for easily testing features with API requests. Mock by intercepting requests on the network level. Pretty neat library.
chakra-ui
- https://chakra-ui.com - nice open-source component library that I was planning to try, and here is a good opportunity. At this stage, the usage is quite simple, but it already provides some nice foundations, css reset, css-in-js, sensible defaults, improved productivity.react-query
- https://react-query.tanstack.com - powerful server-side state management library, providing cache features via a nice APIaxios
- https://github.com/axios/axios - Promise based HTTP client, widely used, could have usedwindow.fetch
, but I'm more used to axios, and it provides a bunch of features, like interceptors (just to highlight onemsw
- https://mswjs.io - API mocking for easily testing features with API requests. Mock by intercepting requests on the network level. Pretty neat library.