Is there any kotlin-first json path library out th...
# announcements
b
Is there any kotlin-first json path library out there?
m
Path? Kotlinx-serialization might be what you look for
c
I think he’s referring to JsonPath, a query format for Json documents. I’m not aware of any Kotlin implementation
☝️ 1
😲 1
b
Yes, I was referring to this. Looks like I'll end up writing something up myself, then 😄
Got started on fully multiplatform implementation of it already. If anyone else is looking for something along these lines, star the repo to keep up-to-date with this.
🙌 1
r
b
While klaxon is definitely amazing, it's jvm only.
But thanks for pointing it out. I might be able to just lift and shift its json path code into MPP!
c
Might also just be easier to actual/expect to platform-specific implementations…
b
I want it to support all platforms, so it'd be hard to find close alternatives for them all. I'll probably just lift java json path implementation and get rid of all jvm dependencies
👍 1
215 Views