{"id":20581244,"url":"https://github.com/jonathas/react-alura","last_synced_at":"2026-05-05T04:02:14.545Z","repository":{"id":141968067,"uuid":"110426984","full_name":"jonathas/react-alura","owner":"jonathas","description":"Alura's React courses","archived":false,"fork":false,"pushed_at":"2019-01-20T18:18:39.000Z","size":56565,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-31T11:31:31.938Z","etag":null,"topics":["alura","javascript","react","reactjs"],"latest_commit_sha":null,"homepage":"https://www.alura.com.br/carreira-programador-react","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jonathas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-11-12T11:30:57.000Z","updated_at":"2019-10-22T08:44:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"eea07639-0bd5-437b-9988-2096e0edc5eb","html_url":"https://github.com/jonathas/react-alura","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jonathas/react-alura","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathas%2Freact-alura","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathas%2Freact-alura/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathas%2Freact-alura/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathas%2Freact-alura/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonathas","download_url":"https://codeload.github.com/jonathas/react-alura/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathas%2Freact-alura/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32634732,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"online","status_checked_at":"2026-05-05T02:00:06.033Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alura","javascript","react","reactjs"],"created_at":"2024-11-16T06:27:44.598Z","updated_at":"2026-05-05T04:02:14.530Z","avatar_url":"https://github.com/jonathas.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Alura - React courses\n\nThis is the code that I've developed following the course. I've made some changes in the original one.\n\n## React course part 1: Reusable components for your webapp\n\n### Downloading and running the server\n\nDownload the jar file from [http://bit.ly/jar-api-curso-react](http://bit.ly/jar-api-curso-react).\n\nNow, in case your MySQL server doesn't have a password, you can just run:\n\n```bash\njava -jar jar-cdc-react.jar\n```\n\nIn case your MySQL server has a password, run it the following way:\n\n```bash\njava -Dspring.datasource.password=myPassword -jar jar-cdc-react.jar\n```\n\n## Content\n\n### Creating and configuring the project\n\n - Understanding what we are going to build during the course\n - Configuring the environment and create-react-app\n - Our first page\n - Why do we use JSX and Babel?\n - Where does Webpack come in?\n\n### HTML structure of the first page\n\n - Importing CSS\n - Defining HTML\n - Implementation of the base layout\n\n### Consuming the API and bringing our listing to life\n\n - Maintaining the state of the component\n - Updating Component Status\n - Understanding a little more about the details of React\n - Setting up the environment for running the API locally\n - Implementing dynamic listing\n\n### Registering new authors\n\n - Synthetic events\n - Keeping the state of form fields\n - Updating the listing based on the form\n - Reuse of components and parameterization\n\n### Refactoring the author component and improving communication\n\n - Extracting the enrollment components for specific classes\n - High Order Components\n - Publish / Subscriber to Decrease Coupling\n - Dealing with API validation errors\n\n### Routes and the React Router\n\n - Router Configuration\n - Navigating with the History API\n - Daughter Routes and IndexRoute\n\n### Book and general review\n\n - Implementation of the book registry\n - Selecting the author\n\n### Latest improvements and next steps\n\n - Spread operator\n - Simplifying the form\n - Build and deploy demo\n - Analyzing what was generated for us by create-react-app\n\n---\n\n## React course part 2: Container components and the react life cycle\n\n### Downloading and running the server\n\nDownload the jar file from [https://github.com/alberto-alura/instalura-api/raw/master/instalura.jar](https://github.com/alberto-alura/instalura-api/raw/master/instalura.jar).\n\nNow, in case your MySQL server doesn't have a password, you can just run:\n\n```bash\njava -jar instalura.jar\n```\n\nIn case your MySQL server has a password, run it the following way:\n\n```bash\njava -Dspring.datasource.password=myPassword -jar instalura.jar\n```\n\nThen access the following address to populate the database: http://localhost:8080/gera/dados\n\n## Content\n\n### Creation of Instalura\n\n - Importing html, css and images\n - Discovering the components of our application\n\n### Consuming the Instalura API\n\n - Using the Fetch API\n - Dealing with Promises\n\n### Deeper into the React Router\n\n - Using parameters on the route\n - onEnter to check conditions before entering route\n\n### JWT-based Authentication\n\n - JWT to traffic the user's token\n\n### A bit more of the React life cycle and components\n\n - Having attributes that are not part of the component state\n - componentWillReceiveProps and one more way to handle state change in component\n\n### A little more division of responsibilities\n\n - Implementation of like and comment features\n - Presentational and Container components\n\n---\n\n## React course part 3: The flux architecture, Redux implementation and server side rendering\n\n## Content\n\n### Flux\n\n - Separating application logics into lighter layers\n - Pattern Flux to make clear the path of data within our application\n\n### Introduction to Redux\n\n - Redux as Flux implementation\n - redux-thunk for asynchronous actions\n\n### Going deeper into Redux\n\n - Bringing immutability to the project\n - Isolating action creation with Action Creators\n - Combining various reducing functions\n\n### Integration between React and Redux\n\n - Using the connect function to generate container components\n - Using the component provider to make the store available to everyone\n\n### Rendering on the server\n\n - A little bit of Electrode\n - Universal Javascript\n - One store for each new request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathas%2Freact-alura","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonathas%2Freact-alura","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathas%2Freact-alura/lists"}