KTON alternatives and similar libraries
Based on the "JSON" category.
Alternatively, view KTON alternatives based on common mentions on social networks and blogs.
-
kotlinx.serialization
Kotlin multiplatform / multi-format serialization -
jackson-module-kotlin
Module that adds support for serialization/deserialization of Kotlin (http://kotlinlang.org) classes and data classes. -
Kotson
Gson for Kotlin, Kotson enables you to parse and write JSON with Google's Gson using a conciser and easier syntax. -
Smartype by mParticle
Json Schema as code, autocomplete for your data model!
Appwrite - The Open Source Firebase alternative introduces iOS support
Do you think we are missing an alternative of KTON or a related project?
README
KTON
Object notation in pure Kotlin!
Gradle
compile 'org.jire.kton:KTON:1.0.1'
Maven
<dependency>
<groupId>org.jire.kton</groupId>
<artifactId>KTON</artifactId>
<version>1.0.1</version>
</dependency>
KTON
allows you to notate objects in an easy syntax using pure Kotlin. This is mostly a toy project
but it may be useful for certain cases. I'd like to make conversion to JSON and provide more advanced features.
The following shows the differences between JSON, XML, and KTON. (Data used from http://json.org/example.html)
JSON:
{
"menu": {
"id": "file",
"value": "File",
"popup": {
"menuitem": [
{ "value": "New", "onclick": "CreateNewDoc()" },
{ "value": "Open", "onclick": "OpenDoc()" },
{ "value": "Close", "onclick": "CloseDoc()" }
]
}
}
}
XML:
<menu id="file" value="File">
<popup>
<menuitem value="New" onclick="CreateNewDoc()" />
<menuitem value="Open" onclick="OpenDoc()" />
<menuitem value="Close" onclick="CloseDoc()" />
</popup>
</menu>
KTON:
val menu = kton {
"id" to "file"
"value" to "File"
"popup" {
"menuitem" [
{ "value" to "New"; "onclick" to "CreateNewDoc()" },
{ "value" to "Open"; "onclick" to "OpenDoc()" },
{ "value" to "Close"; "onclick" to "CloseDoc()" }
]
}
}
Accessing data from a KTON is done with concise syntax. Using the above example...
// Value access through get operator:
val id = menu["id"] // "file"
val value = menu["value"] // "File"
// Body access through invoke operator:
val popup = menu("popup")
val menuitems = popup("menuitem")
// Array access through get operator specifying index:
val newValue = menuitems[0]["value"] // "New"
val open = menuitems[1]
val openValue = open["value"] // "Open"
val closeOnClick = menuitems[2]["onclick"] // "CloseDoc()"
*Note that all licence references and agreements mentioned in the KTON README section above
are relevant to that project's source code only.