Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/y9san9/kotlin-simple-json
A simple educational Kotlin JSON parser: https://dev.to/y9san9/json-parsing-from-scratch-in-kotlin-4al8
https://github.com/y9san9/kotlin-simple-json
json kotlin parser tutorial
Last synced: 5 days ago
JSON representation
A simple educational Kotlin JSON parser: https://dev.to/y9san9/json-parsing-from-scratch-in-kotlin-4al8
- Host: GitHub
- URL: https://github.com/y9san9/kotlin-simple-json
- Owner: y9san9
- License: mit
- Created: 2023-08-02T21:05:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-01T19:19:52.000Z (about 1 year ago)
- Last Synced: 2023-09-02T18:47:36.510Z (about 1 year ago)
- Topics: json, kotlin, parser, tutorial
- Language: Kotlin
- Homepage:
- Size: 19.5 KB
- Stars: 13
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Simple JSON Parser in Kotlin
============================[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT) [![Kotlin](https://img.shields.io/badge/language-Kotlin-orange.svg)](https://kotlinlang.org/)
This is a simple JSON parser written in Kotlin, intended to demonstrate how a basic JSON parser can be implemented in a straightforward manner. It is designed for educational purposes and is not meant for production use.
Article that describes how the parser works: https://dev.to/y9san9/json-parsing-from-scratch-in-kotlin-4al8
Note
----Please be aware that this parser has some limitations and does not support the following features:
* Parsing of floating-point numbers
* Detailed error reportingFeatures
--------* Lightweight and easy-to-understand JSON parsing logic.
* Demonstration of key concepts in parsing JSON data.Usage
-----To use this JSON parser in your Kotlin project, you can clone this repository and include the relevant Kotlin files in your project. However, remember that this parser is not intended for real-world applications.
License
-------This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
Contributing
------------Contributions are not accepted for this repository, as its purpose is purely educational. However, feel free to fork and modify it for personal use or as a learning exercise.
Happy coding!