{"id":23679386,"url":"https://github.com/kenkyoo/react-app-weather","last_synced_at":"2026-04-04T21:33:27.786Z","repository":{"id":267073520,"uuid":"900178856","full_name":"Kenkyoo/react-app-weather","owner":"Kenkyoo","description":"React Weather App es una aplicación web que muestra información meteorológica en tiempo real, utilizando datos proporcionados por la API de OpenWeather.","archived":false,"fork":false,"pushed_at":"2024-12-08T05:54:43.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T00:14:22.606Z","etag":null,"topics":["javascript","mdbootstrap","react","typescript","vite","weather-app"],"latest_commit_sha":null,"homepage":"https://react-app-weather-eight.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kenkyoo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-12-08T04:22:55.000Z","updated_at":"2024-12-08T05:54:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"801b6a31-39aa-4f73-bf45-943f3e1b0dc4","html_url":"https://github.com/Kenkyoo/react-app-weather","commit_stats":null,"previous_names":["kenkyoo/react-app-weather"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Kenkyoo/react-app-weather","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenkyoo%2Freact-app-weather","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenkyoo%2Freact-app-weather/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenkyoo%2Freact-app-weather/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenkyoo%2Freact-app-weather/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kenkyoo","download_url":"https://codeload.github.com/Kenkyoo/react-app-weather/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kenkyoo%2Freact-app-weather/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31415110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"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":["javascript","mdbootstrap","react","typescript","vite","weather-app"],"created_at":"2024-12-29T17:34:26.187Z","updated_at":"2026-04-04T21:33:27.765Z","avatar_url":"https://github.com/Kenkyoo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"React Weather App 🌦️\n\nReact Weather App es una aplicación web que muestra información meteorológica en tiempo real, utilizando datos proporcionados por la API de OpenWeather.\n\n🔗 Ver la aplicación en Vercel\nCaracterísticas ✨\n\n    Búsqueda de condiciones climáticas por ciudad.\n    Información detallada sobre el clima actual:\n        Temperatura actual, mínima, máxima.\n        Sensación térmica.\n        Humedad y presión.\n        Velocidad del viento.\n        Nivel del mar.\n    Cambia entre unidades métricas (°C) e imperiales (°F).\n    Interfaz moderna y responsiva gracias a MDB React UI Kit.\n\nInstalación 🚀\n\nSigue estos pasos para ejecutar el proyecto localmente:\n\n    Clonar el repositorio:\n\ngit clone https://github.com/Kenkyoo/react-app-weather.git\ncd react-app-weather\n\nInstalar dependencias: Asegúrate de tener npm instalado. Luego, ejecuta:\n\nnpm install\n\nAgregar tu clave de API: Ve a OpenWeather y obtén una API Key. Luego, crea un archivo .env en la raíz del proyecto y agrega tu clave:\n\nVITE_API_KEY=your_openweather_api_key\n\nIniciar la aplicación en modo desarrollo:\n\n    npm run dev\n\n    Abrir en tu navegador: Por defecto, estará disponible en http://localhost:5173.\n\nTecnologías 🛠️\n\n    React 18: Biblioteca para construir interfaces de usuario.\n    TypeScript: Tipado estático para JavaScript.\n    Vite: Herramienta rápida para el desarrollo.\n    Axios: Cliente HTTP para consumir la API.\n    MDB React UI Kit: Componentes estilizados para React.\n    Font Awesome: Íconos modernos y personalizables.\n\nScripts disponibles 📜\n\n    npm run dev: Inicia el servidor en modo desarrollo.\n    npm run build: Construye la aplicación para producción.\n    npm run preview: Previsualiza la aplicación de producción localmente.\n    npm run lint: Ejecuta ESLint para analizar el código.\n\nEstructura del proyecto 📂\n\nreact-app-weather/\n├── src/\n│   ├── components/\n│   │   ├── Card.tsx         # Componente que muestra los datos meteorológicos\n│   │   ├── Search.tsx       # Componente de búsqueda\n│   ├── App.tsx              # Punto de entrada principal\n│   ├── index.tsx            # Renderizado inicial\n│   ├── App.css              # Estilos personalizados\n├── public/                  # Archivos estáticos\n├── .env                     # Variables de entorno\n├── package.json             # Configuración del proyecto\n└── README.md                # Documentación\n\nDespliegue 🚀\n\nEsta aplicación está desplegada en Vercel, lo que permite tener una URL accesible de manera pública:\nReact Weather App en Vercel.\nContribuciones 🤝\n\n¡Toda contribución es bienvenida!\nSi encuentras un error o tienes ideas para mejorar la aplicación, por favor crea un issue o envía un pull request.\nLicencia 📄\n\nEste proyecto está licenciado bajo la MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenkyoo%2Freact-app-weather","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkenkyoo%2Freact-app-weather","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkenkyoo%2Freact-app-weather/lists"}