kimdohun0104 / kinda

Kind of state management library (MVI)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kinda는 무엇인가요?

Kinda는 프로그램의 상태직관적이고 안전한 방법으로 관리할 수 있는 기능을 제공하는 라이브러리입니다.
Redux, FLUX, MVI 등 단방향 아키텍처에서 많은 영감을 받았으며, MVI 패턴에 가장 근접합니다.
MVI패턴에 대해 익숙하지 않다면, 저의 개인 블로그를 참고할 수 있습니다.

Kinda와 함께 MVI 테스트 작성하기
MVI 패턴에 대한 고찰, 이유와 방법 그리고 한계


Kinda 시작하기

Kinda를 시작하기 위해서 WIKI를 참고해주세요!


감사의 글

Kinda가 존재할 수 있었던 이유는 수 많은 오픈소스와 자료들 덕분이었습니다. 감사합니다.
아래는 제가 영감을 얻고 참고했던 자료들입니다.

작성자 오픈소스 발표, 자료
Spotify Mobius Mobius: A Loopy UI Architecture - Ahmed Nawara, Spotify
Airbnb MvRx Better Android Testing at Airbnb
Tinder StateMachine
MyRealTrip box

Download

allprojects {
    repositories {
        ...
        maven { url 'https://jitpack.io' }
    }
}

dependencies {
    implementation "com.github.kimdohun0104.kinda:kinda-core:${kinda_version}"
    implementation "com.github.kimdohun0104.kinda:kinda-android:${kinda_version}"
    
    testImplementation "com.github.kimdohun0104.kinda:kinda-android-test:${kinda_version}"
}

License

MIT License

Copyright (c) 2020 Dohun Kim

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

About

Kind of state management library (MVI)

License:MIT License


Languages

Language:Kotlin 100.0%