deser_json

JSON-Binding for deser

Pure Nim score 15/100 · tests present · no docs generated

Summary

Latest Version Unknown
License MIT
CI Status Failing
Downloads 0
Last Indexed 2026-07-21 05:24

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 nim-version-img

JSON-Binding for deser

nimble install deser_json

Deser documentation


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.

THIRD-PARTY-NOTICES.TXT

Acknowledgements