Skip to content

Files

Latest commit

c3a4c94 · Oct 24, 2022

History

History
94 lines (62 loc) · 2.84 KB

README.md

File metadata and controls

94 lines (62 loc) · 2.84 KB
React Query Caching

 

React Query Caching

Github top language Github language count Repository size Last-Commit

About   |   Features   |   Technologies   |   Requirements   |   Starting   |   License   |   Author


🎯 About

Com a tecnologia evoluindo, somos chamados a cada vez mais desenvolver aplicações performáticas, que aproveitem bem os recursos escassos de conectividades de alguns usuários. Portanto a motivação desse projeto é a demonstração de uso e comparação da biblioteca React Query frente aos recursos nativos do React.

✨ Features

✔️ Listar produtos de uma API;
✔️ Mostrar detalhe do produto;
✔️ Comparação do uso do cache em requisições lentas;

🚀 Technologies

The following tools were used in this project:

✅ Requirements

Before starting 🏁, you need to have Git and Node installed.

🏁 Starting

# Clone this project
$ git clone https://github.com/wsasouza/react-query-comparison.git

# Access
$ cd react-query-comparison

# Install dependencies
$ yarn
# or
$ npm install

# Run the server
$ yarn dev:server
# or
$ npm run dev:server

# The server will initialize in the <http://localhost:3333>

# Run the project
$ yarn dev
# or
$ npm run dev

# The app will initialize in the <http://localhost:5173>

📝 License

This project is under license from MIT. For more details, see the LICENSE file.

Made with ❤️ by Walter Santos de Andrade Souza

 

Back to top