{"id":29119326,"url":"https://github.com/dincertekin/mblog","last_synced_at":"2026-05-05T14:32:00.077Z","repository":{"id":255089331,"uuid":"848504879","full_name":"dincertekin/mblog","owner":"dincertekin","description":"Mobile blogging app built with React Native and Express.js backed by MySQL.","archived":false,"fork":false,"pushed_at":"2026-04-05T13:02:43.000Z","size":5059,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-12T21:51:49.616Z","etag":null,"topics":["blogging","express","mobile-app","mysql","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dincertekin.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-27T22:15:10.000Z","updated_at":"2026-04-05T13:08:53.000Z","dependencies_parsed_at":"2024-11-21T20:15:31.358Z","dependency_job_id":null,"html_url":"https://github.com/dincertekin/mblog","commit_stats":{"total_commits":8,"total_committers":1,"mean_commits":8.0,"dds":0.0,"last_synced_commit":"07b1bb23f0ef5f44a09c1ad6e3e59f5e95f8d5fa"},"previous_names":["dincertekin/dtblog","dincertekin/mobile-blog","dincertekin/mblog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dincertekin/mblog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dincertekin%2Fmblog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dincertekin%2Fmblog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dincertekin%2Fmblog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dincertekin%2Fmblog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dincertekin","download_url":"https://codeload.github.com/dincertekin/mblog/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dincertekin%2Fmblog/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32653494,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["blogging","express","mobile-app","mysql","react-native"],"created_at":"2025-06-29T13:40:18.966Z","updated_at":"2026-05-05T14:32:00.061Z","avatar_url":"https://github.com/dincertekin.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mblog\n\n![Platform](https://img.shields.io/badge/platform-Android%20%7C%20iOS-blue)\n![License](https://img.shields.io/badge/license-MIT-green)\n\nmblog is a mobile blog app that lets you create, read, update, and delete blog posts from your phone. Built from scratch with a React Native client and an Express.js backend connected to MySQL.\n\n## Screenshots\n\n| Home Screen | Post Details |\n|---|---|\n| ![Home Screen](screenshots/screenshot_1.png) | ![Post Details](screenshots/screenshot_2.png) |\n\n## Tech Stack\n\n| Layer | Tool |\n|---|---|\n| Mobile Client | React Native |\n| Backend | Express.js |\n| Database | MySQL |\n| UI Design | Figma |\n\n## Installation\n\n### Prerequisites\n\n- Node.js and npm\n- MySQL database\n- React Native environment ([setup guide](https://reactnative.dev/docs/environment-setup))\n\n### Steps\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/dincertekin/mblog.git\n   ```\n\n2. Install dependencies for both client and server:\n   ```bash\n   cd mblog/client \u0026\u0026 npm install\n   cd ../server \u0026\u0026 npm install\n   ```\n\n3. Configure your MySQL connection in `server/app.js`:\n   ```js\n   host: 'your_mysql_host',\n   user: 'your_mysql_user',\n   password: 'your_mysql_password',\n   database: 'your_database_name'\n   ```\n\n## Usage\n\nStart the server first, then the client:\n\n```bash\ncd mblog/server \u0026\u0026 npm run start\ncd mblog/client \u0026\u0026 npm run start\n```\n\nOpen the app on your device or emulator to start creating and reading posts.\n\n## Troubleshooting\n\nMake sure your MySQL database is running before starting the server, otherwise the connection will fail.\n\n## Contributing\n\nContributions are welcome! To get started:\n\n1. Fork the repository.\n2. Create a new branch (`git checkout -b feature/your-feature`).\n3. Commit your changes (`git commit -m 'Add your feature'`).\n4. Push to the branch (`git push origin feature/your-feature`).\n5. Open a Pull Request.\n\nFor major changes, please open an issue first to discuss what you'd like to change.\n\n## License\n\nMIT License — see [LICENSE](./LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdincertekin%2Fmblog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdincertekin%2Fmblog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdincertekin%2Fmblog/lists"}