Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 reporting

Features
--------

* 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!