{"id":15027434,"url":"https://github.com/badoo/mvicore","last_synced_at":"2025-05-14T16:01:41.221Z","repository":{"id":37851608,"uuid":"124955999","full_name":"badoo/MVICore","owner":"badoo","description":"MVI framework with events, time-travel, and more","archived":false,"fork":false,"pushed_at":"2025-04-02T16:22:59.000Z","size":5427,"stargazers_count":1286,"open_issues_count":32,"forks_count":88,"subscribers_count":36,"default_branch":"master","last_synced_at":"2025-04-12T01:56:25.621Z","etag":null,"topics":["android","android-architecture","android-library","kotlin-android","mvi","mvi-architecture"],"latest_commit_sha":null,"homepage":"https://badoo.github.io/MVICore/","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/badoo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2018-03-12T21:50:29.000Z","updated_at":"2025-04-07T06:00:14.000Z","dependencies_parsed_at":"2024-10-14T11:00:37.491Z","dependency_job_id":"07f204e5-ba5a-49de-ab7a-a968453d7e37","html_url":"https://github.com/badoo/MVICore","commit_stats":{"total_commits":339,"total_committers":27,"mean_commits":"12.555555555555555","dds":0.6578171091445428,"last_synced_commit":"cb93bafc252e0fd1bfc7db31b00b8df44b5ec2d9"},"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badoo%2FMVICore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badoo%2FMVICore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badoo%2FMVICore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/badoo%2FMVICore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/badoo","download_url":"https://codeload.github.com/badoo/MVICore/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248505864,"owners_count":21115354,"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","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":["android","android-architecture","android-library","kotlin-android","mvi","mvi-architecture"],"created_at":"2024-09-24T20:06:25.808Z","updated_at":"2025-04-12T01:56:30.719Z","avatar_url":"https://github.com/badoo.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MVICore\n[![Build](https://github.com/badoo/MVICore/actions/workflows/build.yml/badge.svg)](https://github.com/badoo/MVICore/actions/workflows/build.yml)\n[![Version](https://jitpack.io/v/badoo/mvicore.svg)](https://jitpack.io/#badoo/mvicore)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)\n\n## What's this?\n\nMVICore is a modern, Kotlin-based MVI framework:\n- **Scaling with complexity**: operate with a single Reducer if needed, with the option of having the full power of additional components to handle more complex cases\n- **Event handling**: A solution to handling events that you don’t want to store in the state\n- **Reactive component binding**: A super simple API to bind your reactive endpoints to each other with automatic lifecycle handling\n- **Custom Middlewares**: for every single component in the system, with flexible configuration options\n- **Logger**: An out-of-the-box logger Middleware\n- **Time Travel Debugger**: for ALL of your reactive components (not just your state machine!) with UI controls for recording and playback\n\n\n## Documentation\n\nThe library comes with lots of powerful capabilities and tooling.\n\nSee [https://badoo.github.io/MVICore/](https://badoo.github.io/MVICore) for full documentation.\n\n## Download\n\nAvailable through jitpack.\n\nAdd the maven repo to your root `build.gradle`\n\n```groovy\nallprojects {\n    repositories {\n        maven { url 'https://jitpack.io' }\n    }\n}\n```\n\nAdd the dependencies:\n- Framework:\n```groovy\nimplementation 'com.github.badoo.mvicore:mvicore:{latest-version}'\n```\n\n- Binder (for versions higher than 1.2.4)\n```groovy\nimplementation 'com.github.badoo.mvicore:binder:{latest-version}'\n```\n\n- Helper classes for Android:\n```groovy\nimplementation 'com.github.badoo.mvicore:mvicore-android:{latest-version}'\n```\n\n- ModelWatcher for efficient view updates\n```groovy\nimplementation 'com.github.badoo.mvicore:mvicore-diff:{latest-version}'\n```\n\n- Time Travel Debugger controls in a [DebugDrawer](https://github.com/palaima/DebugDrawer) module (You need to add the dependencies to DebugDrawer and configure it yourself before you can use this):\n```groovy\nimplementation 'com.github.badoo.mvicore:mvicore-debugdrawer:{latest-version}'\n```\n\n## Related articles \u0026 videos\n- [MVI beyond state reducers](https://medium.com/bumble-tech/a-modern-kotlin-based-mvi-architecture-9924e08efab1)\n- [Building a system of reactive components with Kotlin](https://medium.com/bumble-tech/building-a-system-of-reactive-components-with-kotlin-ff56981e92cf)\n- [Unidirectional data-flow and the Zen of black box components](https://medium.com/bumble-tech/unidirectional-data-flow-and-the-zen-of-black-box-components-fff5d618f8b6)\n- [Time Travel Debug Everything!](https://medium.com/bumble-tech/time-travel-debug-everything-droidconuk-2018-lightning-talk-445217258401)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbadoo%2Fmvicore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbadoo%2Fmvicore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbadoo%2Fmvicore/lists"}