{"id":27700348,"url":"https://github.com/joel-rd/realtimechat","last_synced_at":"2026-05-04T11:33:21.966Z","repository":{"id":285507558,"uuid":"958370281","full_name":"Joel-RD/RealTimeChat","owner":"Joel-RD","description":"Chat en tiempo real basado en socket.io, envió de mensajes , imágenes y videollamadas","archived":false,"fork":false,"pushed_at":"2025-05-09T15:41:48.000Z","size":1136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-09T15:49:06.253Z","etag":null,"topics":["realtime-chat","socket-io","socket-programming","webrtc-call","webrtc-video"],"latest_commit_sha":null,"homepage":"https://realtimechat-za8g.onrender.com","language":"CSS","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/Joel-RD.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,"zenodo":null}},"created_at":"2025-04-01T04:56:48.000Z","updated_at":"2025-05-09T15:46:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"8f973720-da87-46cb-b31d-a0952af16236","html_url":"https://github.com/Joel-RD/RealTimeChat","commit_stats":null,"previous_names":["joel-rd/realtimechat"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Joel-RD/RealTimeChat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joel-RD%2FRealTimeChat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joel-RD%2FRealTimeChat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joel-RD%2FRealTimeChat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joel-RD%2FRealTimeChat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Joel-RD","download_url":"https://codeload.github.com/Joel-RD/RealTimeChat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joel-RD%2FRealTimeChat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279012179,"owners_count":26085078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"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":["realtime-chat","socket-io","socket-programming","webrtc-call","webrtc-video"],"created_at":"2025-04-25T18:59:07.247Z","updated_at":"2025-10-12T17:09:32.215Z","avatar_url":"https://github.com/Joel-RD.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RealTimeChat\r\n\r\n![Descripción de la imagen](/file/logo.png)\r\n\r\nReal Time Chat es una aplicación de chat en tiempo real que permite a los usuarios enviar mensajes, compartir imágenes y realizar videollamadas utilizando tecnologías como **Socket.IO**, **WebRTC** y **PeerJS**.\r\n\r\n## Características\r\n\r\n- **Mensajería en tiempo real**: Los usuarios pueden enviar y recibir mensajes instantáneamente.\r\n- **Compartir imágenes**: Los usuarios pueden compartir imágenes en el chat.\r\n- **Videollamadas**: Soporte para videollamadas entre usuarios utilizando WebRTC.\r\n- **Salas de chat dinámicas**: Los usuarios se emparejan automáticamente en salas de chat privadas.\r\n- **Interfaz moderna**: Diseño responsivo y accesible.\r\n\r\n## Tecnologías utilizadas\r\n\r\n- **Node.js**: Entorno de ejecución para el servidor.\r\n- **Express**: Framework para manejar rutas y middleware.\r\n- **Socket.IO**: Comunicación en tiempo real entre cliente y servidor.\r\n- **WebRTC**: Para videollamadas en tiempo real.\r\n- **PeerJS**: Simplificación de la conexión WebRTC.\r\n- **PostgreSQL**: Base de datos para almacenar información de usuarios (configurable).\r\n- **HTML, CSS y JavaScript**: Para la interfaz de usuario.\r\n\r\n## Requisitos previos\r\n\r\n- **Node.js** (v14 o superior)\r\n- **npm** (v6 o superior)\r\n- **PostgreSQL** (opcional, si se utiliza una base de datos local)\r\n\r\n## Instalación\r\n\r\n1. Clona este repositorio:\r\n\r\n   ```bash\r\n   git clone https://github.com/Joel-RD/RealTimeChat.git\r\n   cd realtimechat\r\n   ```\r\n\r\n2. Instala las dependencias\r\n\r\n   ```bash\r\n   npm install\r\n   ```\r\n\r\n3. Configurar las variables de entorno en el archivo .env en la raiz del projecto.\r\n\r\n   ```bash\r\n   PORT_SERVER=8120\r\n   URL_LOCAL_HOST=\"http://localhost:\"\r\n   DB_URL_LOCAL=postgresql://postgres:tu_contraseña@localhost:5432/registeruser\r\n   DB_URL_CLOUD=\r\n   NODE_ENV=development\r\n   ```\r\n\r\n4. Iniciar el servidor en modo desarrollador.\r\n\r\n```bash\r\nnpm start\r\n```\r\n\r\n5. Abre tu navegador en:\r\n```bash\r\n http://localhost:8120\r\n```\r\n\r\n6. Scripts disponibles.\r\n```bash\r\nnpm start\r\nnpm run build\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoel-rd%2Frealtimechat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoel-rd%2Frealtimechat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoel-rd%2Frealtimechat/lists"}