Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inkapplications/kimchi
🥬 Kotlin Multiplatform Logging and Analytics
https://github.com/inkapplications/kimchi
android javascript jvm kotlin multiplatform
Last synced: 2 months 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-28T16:36:41.000Z (2 months ago)
- Last Synced: 2024-10-31T23:42:12.977Z (2 months ago)
- Topics: android, javascript, jvm, kotlin, multiplatform
- Language: Kotlin
- Homepage: https://kimchi.inkapplications.com
- Size: 313 KB
- Stars: 6
- Watchers: 3
- 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)