{"id":13630703,"url":"https://github.com/leoasis/workshop-pensando-en-react","last_synced_at":"2026-02-27T10:05:09.501Z","repository":{"id":66129018,"uuid":"94716978","full_name":"leoasis/workshop-pensando-en-react","owner":"leoasis","description":"Workshop introductorio a React","archived":false,"fork":false,"pushed_at":"2017-08-14T03:21:39.000Z","size":14108,"stargazers_count":51,"open_issues_count":4,"forks_count":17,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-03T18:40:57.909Z","etag":null,"topics":["react","workshop"],"latest_commit_sha":null,"homepage":"https://leoasis.github.io/workshop-pensando-en-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/leoasis.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}},"created_at":"2017-06-18T22:38:25.000Z","updated_at":"2023-10-26T13:50:05.000Z","dependencies_parsed_at":"2023-02-22T20:30:44.168Z","dependency_job_id":null,"html_url":"https://github.com/leoasis/workshop-pensando-en-react","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/leoasis/workshop-pensando-en-react","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoasis%2Fworkshop-pensando-en-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoasis%2Fworkshop-pensando-en-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoasis%2Fworkshop-pensando-en-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoasis%2Fworkshop-pensando-en-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leoasis","download_url":"https://codeload.github.com/leoasis/workshop-pensando-en-react/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leoasis%2Fworkshop-pensando-en-react/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29890673,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T09:48:51.284Z","status":"ssl_error","status_checked_at":"2026-02-27T09:48:43.992Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["react","workshop"],"created_at":"2024-08-01T22:01:56.189Z","updated_at":"2026-02-27T10:05:07.975Z","avatar_url":"https://github.com/leoasis.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Workshop - Pensando en React\n\nLa idea de este Workshop es aprender a usar y pensar en React mientras hacemos una aplicación.\n\n## Presentación\nPodes ver la presentación en el siguiente [link](https://slides.com/leonardogarciacrespo/pensando-en-react)\n\n## Setup\n\n### Instalación\nUsando `npm`\n\n```bash\ngit clone git@github.com:leoasis/workshop-pensando-en-react.git\ncd workshop-pensando-en-react\nnpm install\nnpm start\n```\n\no si usas `yarn`\n\n```bash\ngit clone git@github.com:leoasis/workshop-pensando-en-react.git\ncd workshop-pensando-en-react\nyarn install\nyarn start\n```\n\nEsto va a levantar un [servidor](http://localhost:3000) y va a abrir una ventana del navegador con la pagina inicial.\n\nDesde allí se puede navegar a los ejercicios de los fundamentos, o a las versiones inicial y final de la aplicación.\n\n### React Devtools:\n* Instalar [React Devtools](https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en) en Chrome\n\n### Spotify:\n* Para poder utilizar la aplicación necesitas tener una cuenta de [Spotify](https://www.spotify.com/ar) (no hace falta que sea Premium) si todavía no tenes una. \n\n## Contenido\n\nSi todavía no conocés nada de React, te recomiendo arrancar con los **fundamentos**. \n\nEn caso de ya tener conocimientos, podés ir directo a **crear la aplicación**. \nSiempre podés volver a los fundamentos si hay algo que no te queda claro como hacer.\n\n### Fundamentos\n0. [Intro](./docs/fundamentos/00-intro.md)\n1. [Render y Create Element](./docs/fundamentos/01-render-y-create-element.md)\n2. [Componentes](./docs/fundamentos/02-componentes.md)\n3. [JSX](./docs/fundamentos/03-jsx.md)\n4. [Manejo de Estado (setState y re-render)](./docs/fundamentos/04-set-state-y-re-render.md)\n5. [Eventos](./docs/fundamentos/05-eventos.md)\n6. [Listas](./docs/fundamentos/06-listas.md)\n7. [Ciclo de vida de los componentes](./docs/fundamentos/07-ciclo-de-vida.md)\n8. [Refs](./docs/fundamentos/08-refs.md)\n9. [Elementos de formulario](./docs/fundamentos/09-elementos-de-formulario.md)\n10. [Outro](./docs/fundamentos/10-outro.md)\n\n### Crear nuestra primer Aplicación\n0. [Intro](./docs/pensando-en-react/00-intro.md)\n1. [Partir la interfaz en componentes](./docs/pensando-en-react/01-dividir-en-componentes.md)\n2. [Crear una versión estática](./docs/pensando-en-react/02-crear-version-estatica.md)\n3. [Identificar la representación mínima del estado](./docs/pensando-en-react/03-identificar-estado-minimo.md)\n4. [Identificar dónde debe vivir nuestro estado](./docs/pensando-en-react/04-donde-debe-vivir-el-estado.md)\n5. [Agregar interacciones](./docs/pensando-en-react/05-agregar-interacciones.md)\n6. [Outro](./docs/pensando-en-react/06-outro.md)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleoasis%2Fworkshop-pensando-en-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleoasis%2Fworkshop-pensando-en-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleoasis%2Fworkshop-pensando-en-react/lists"}