https://github.com/inkapplications/kimchi
🥬 Kotlin Multiplatform Logging and Analytics
https://github.com/inkapplications/kimchi
android javascript jvm kotlin multiplatform
Last synced: about 1 year ago
JSON representation
🥬 Kotlin Multiplatform Logging and Analytics
- Host: GitHub
- URL: https://github.com/inkapplications/kimchi
- Owner: InkApplications
- License: mit
- Created: 2020-02-17T03:01:13.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-24T18:37:24.000Z (about 1 year ago)
- Last Synced: 2025-03-27T13:11:47.585Z (about 1 year ago)
- Topics: android, javascript, jvm, kotlin, multiplatform
- Language: Kotlin
- Homepage: https://kimchi.inkapplications.com
- Size: 333 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Kimchi
======
Kimchi is a multiplatform logging and analytics tool written in Kotlin.
## Installation
Published to Maven Central
### Maven Coordinates
`com.inkapplications.kimchi:core`
## Logging
Start logging by adding a writer and sending logs:
```kotlin
fun main() {
// Add one or more log writers:
Kimchi.addLog(defaultWriter)
// Send Logs:
Kimchi.info("Hello World")
}
```
## Analytics
Analytics is as easy as logging!
Just like the logger, just add a writer and start tracking events:
```kotlin
fun main() {
// Add one or more analytics writers:
Kimchi.addAnalytics(KimchiLoggerAnalytics) // send analytics events to the logger.
// Send Analytics Events:
Kimchi.trackEvent("Hello Analytics!")
}
```
## Documentation
For more examples and documentation please see [the website](https://kimchi.inkapplications.com)