{"id":22495135,"url":"https://github.com/hacimertgokhan/mermes","last_synced_at":"2026-04-17T07:33:13.573Z","repository":{"id":264631190,"uuid":"893912053","full_name":"hacimertgokhan/mermes","owner":"hacimertgokhan","description":"Local area network (LAN) message application.","archived":false,"fork":false,"pushed_at":"2024-11-26T11:49:34.000Z","size":349,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-27T21:15:47.114Z","etag":null,"topics":["expo","javascript","lan","network","react-native"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/hacimertgokhan.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-11-25T12:29:31.000Z","updated_at":"2025-01-11T23:12:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"dd158efa-2861-4a19-818a-35449388398f","html_url":"https://github.com/hacimertgokhan/mermes","commit_stats":null,"previous_names":["hacimertgokhan/mermes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hacimertgokhan/mermes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacimertgokhan%2Fmermes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacimertgokhan%2Fmermes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacimertgokhan%2Fmermes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacimertgokhan%2Fmermes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hacimertgokhan","download_url":"https://codeload.github.com/hacimertgokhan/mermes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacimertgokhan%2Fmermes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31920140,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"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":["expo","javascript","lan","network","react-native"],"created_at":"2024-12-06T19:25:44.386Z","updated_at":"2026-04-17T07:33:13.550Z","avatar_url":"https://github.com/hacimertgokhan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Mermes - Yerel Ağ Mesajlaşma Uygulaması\n\nMermes, **React Native** ve **Expo** kullanılarak geliştirilmiş, aynı ağ üzerindeki cihazlar arasında internet bağlantısı gerektirmeden mesajlaşma imkanı sunan bir uygulamadır. Uygulama, kullanıcıların yerel bir Wi-Fi ağı veya mobil erişim noktası üzerinden iletişim kurmasını sağlar.\n\n## Özellikler\n\n- **Yerel Ağ Mesajlaşması**: İnternet bağlantısı olmadan aynı ağdaki cihazlar arasında mesaj gönderimi.\n- **Dinamik Mesaj Listesi**: Gönderilen mesajların anlık olarak görüntülenmesi.\n- **Mesaj Kopyalama**: Bir mesaja tıklayarak metni panoya kopyalayabilirsiniz.\n- **Kullanıcı Dostu Arayüz**: Basit ve sezgisel tasarım.\n\n## Gereksinimler\n\n- **Node.js** (16.x veya üzeri)\n- **Expo CLI** (6.x veya üzeri)\n- **React Native** (0.72 veya üzeri)\n- Aynı Wi-Fi ağına bağlı en az iki cihaz veya bir cihaz ve onun mobil erişim noktası.\n\n## Kurulum\n\n1. **Projeyi klonlayın:**\n   ```bash\n   git clone https://github.com/hacimertgokhan/mermes.git\n   cd mermes\n   ```\n\n2. **Bağımlılıkları yükleyin:**\n   ```bash\n   npm install\n   ```\n\n3. **Socket.io sunucusunu kurun:**\n    - Sunucu için `socket.io` kurulumu yapmanız gerekmektedir.\n    - Sunucuyu çalıştırmadan önce IP adresini cihazınızın yerel ağına göre ayarlayın.\n    - Örnek `server.js` kodu:\n      ```javascript\n      const express = require(\"express\");\n      const http = require(\"http\");\n      const { Server } = require(\"socket.io\");\n \n      const app = express();\n      const server = http.createServer(app);\n      const io = new Server(server);\n \n      io.on(\"connection\", (socket) =\u003e {\n        console.log(\"Bir kullanıcı bağlandı.\");\n        socket.on(\"sendMessage\", (message) =\u003e {\n          io.emit(\"receiveMessage\", message);\n        });\n      });\n \n      server.listen(3000, () =\u003e {\n        console.log(\"Sunucu çalışıyor: http://\u003cyerel-ip\u003e:3000\");\n      });\n      ```\n\n   ```bash\n   node server.js\n   ```\n\n4. **Uygulamayı başlatın:**\n   ```bash\n   expo start\n   ```\n\n5. **IP adresini güncelleyin:**\n   `App.js` dosyasında `SOCKET_SERVER` değişkenini, Expo'nun başlattığı IP adresine göre güncelleyin.\n\n## Kullanım\n\n1. Uygulamayı başlatın ve cihazınızda açılan QR kodu tarayın.\n2. Aynı ağdaki ikinci bir cihazda uygulamayı çalıştırın.\n3. Mesaj göndererek iletişim kurmaya başlayın.\n\n## Kütüphaneler\n\n- [Expo](https://expo.dev/)\n- [Socket.io](https://socket.io/)\n- [@react-native-clipboard/clipboard](https://www.npmjs.com/package/@react-native-clipboard/clipboard)\n\n## Gelecek Planlar\n\n- **Emoji ve Medya Desteği**: Mesajlara görsel ve emojiler ekleme.\n- **Bildirimler**: Yeni mesajlar için yerel bildirim desteği.\n- **Tema Özelleştirmesi**: Kullanıcıların uygulama temasını değiştirebilmesi.\n\n## Katkıda Bulunma\n\nKatkıda bulunmak isterseniz, lütfen bir **pull request** açmadan önce bir **issue** oluşturun. Fikirlerinizi paylaşmaktan memnuniyet duyarız!\n\n## Lisans\nBu proje [MIT Lisansı](LICENSE) altında lisanslanmıştır.\n\n---\n\n### Mermes - Local Network Messaging App\n\n# Mermes\n\nMermes is a messaging application developed using **React Native** and **Expo** that allows communication between devices on the same network without requiring an internet connection. The app enables users to communicate via a local Wi-Fi network or a mobile hotspot.\n\n## Features\n\n- **Local Network Messaging**: Send messages between devices on the same network without an internet connection.\n- **Dynamic Message List**: Messages are displayed instantly as they are sent.\n- **Message Copying**: Tap on a message to copy its text to the clipboard.\n- **User-Friendly Interface**: Simple and intuitive design.\n\n## Requirements\n\n- **Node.js** (16.x or later)\n- **Expo CLI** (6.x or later)\n- **React Native** (0.72 or later)\n- At least two devices connected to the same Wi-Fi network, or one device acting as a mobile hotspot.\n\n## Installation\n\n1. **Clone the project:**\n   ```bash\n   git clone https://github.com/hacimertgokhan/mermes.git\n   cd mermes\n   ```\n\n2. **Install dependencies:**\n   ```bash\n   npm install\n   ```\n\n3. **Set up the Socket.io server:**\n    - You need to set up a `socket.io` server.\n    - Update the server's IP address to match your local network configuration.\n    - Example `server.js` code:\n      ```javascript\n      const express = require(\"express\");\n      const http = require(\"http\");\n      const { Server } = require(\"socket.io\");\n \n      const app = express();\n      const server = http.createServer(app);\n      const io = new Server(server);\n \n      io.on(\"connection\", (socket) =\u003e {\n        console.log(\"A user connected.\");\n        socket.on(\"sendMessage\", (message) =\u003e {\n          io.emit(\"receiveMessage\", message);\n        });\n      });\n \n      server.listen(3000, () =\u003e {\n        console.log(\"Server running at http://\u003clocal-ip\u003e:3000\");\n      });\n      ```\n\n   ```bash\n   node server.js\n   ```\n\n4. **Start the application:**\n   ```bash\n   expo start\n   ```\n\n5. **Update the IP address:**\n   Update the `SOCKET_SERVER` variable in the `App.js` file to match the IP address used by Expo.\n\n## Usage\n\n1. Launch the application and scan the QR code with your device.\n2. Run the app on a second device connected to the same network.\n3. Start sending messages to communicate.\n\n## Libraries\n\n- [Expo](https://expo.dev/)\n- [Socket.io](https://socket.io/)\n- [@react-native-clipboard/clipboard](https://www.npmjs.com/package/@react-native-clipboard/clipboard)\n\n## Future Plans\n\n- **Emoji and Media Support**: Add visuals and emojis to messages.\n- **Notifications**: Local notification support for new messages.\n- **Theme Customization**: Allow users to change the app's theme.\n\n## Contributing\n\nIf you'd like to contribute, please create an **issue** before opening a **pull request**. We welcome your ideas and contributions!\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacimertgokhan%2Fmermes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhacimertgokhan%2Fmermes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacimertgokhan%2Fmermes/lists"}