Last active
January 9, 2026 01:31
-
-
Save alexishida/bdaaab51d4400b6754320de6d901152b to your computer and use it in GitHub Desktop.
Anotações do React
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Criando um projeto novo com o vite e o react-ts | |
| npm create vite@latest app -- --template react-ts | |
| # Instalando o tailwindcss no vite | |
| npm install tailwindcss @tailwindcss/vite | |
| # Instalando o Redux e Redux-React | |
| npm install @reduxjs/toolkit react-redux | |
| # Interactive React Lifecycle Methods diagram. | |
| https://github.com/wojtekmaj/react-lifecycle-methods-diagram | |
| https://projects.wojtekmaj.pl/react-lifecycle-methods-diagram/ | |
| # Validações | |
| npm install formik | |
| npm install yup | |
| # Build | |
| npm run build | |
| # Rodando um build | |
| npm install -g serve | |
| serve -s build | |
| ## No Vite | |
| npm run preview | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment