deser_json
JSON-Binding for deser
Summary
| Latest Version | Unknown |
|---|---|
| License | MIT |
| CI Status | Failing |
| Downloads | 0 |
| Last Indexed | 2026-07-21 05:24 |
Tags
Installation
nimble install deser_json
choosenim install deser_json
git clone https://github.com/gabbhack/deser_json
OS Compatibility
| Platform | Linux | macOS | Windows | FreeBSD | OpenBSD | NetBSD | Android | iOS | WASM | Embedded |
|---|---|---|---|---|---|---|---|---|---|---|
| deser_json | ✓ | ✓ | ✓ | - | - | - | - | - | - | ✓ |
Source
| Repository | https://github.com/gabbhack/deser_json |
|---|---|
| Homepage | https://github.com/gabbhack/deser_json |
| Registry Source | nimble_official |
README
deser_json 
JSON-Binding for deser
nimble install deser_json
Usage
First, install deser via nimble install deser
deser_json provides three procedures:
1. toJson for serialization
1. toPrettyJson for pretty serialization
1. fromJson for deserialization
import
deser,
deser_json
var some = [1, 2, 3]
echo some.toJson()
some = fromJson(typeof(some), "[1, 2, 3]")
See the deser documentation for a complete example.
License
Licensed under MIT license.
deser_json uses third-party libraries or other resources that may be distributed under licenses different than the deser_json.
Acknowledgements
- serde_json, for all the ideas I stole
- jsony, for json parser