package jsonm

  1. Overview
  2. Docs
Non-blocking streaming JSON codec for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

jsonm-1.0.2.tbz
sha512=0072f5c31080202ed1cb996a8530d72c882723f26b597f784441033f59338ba8c0cbabf901794d5b1ae749a54af4d7ebf7b47987db43488c7f6ac7fe191a042f

Description

Jsonm is a non-blocking streaming codec to decode and encode the JSON data format. It can process JSON text without blocking on IO and without a complete in-memory representation of the data.

The alternative "uncut" codec also processes whitespace and (non-standard) JSON with JavaScript comments.

Jsonm is made of a single module and depends on Uutf. It is distributed under the ISC license.

Home page: http://erratique.ch/software/jsonm
Contact: Daniel Bünzli <daniel.buenzl i@erratique.ch>

Tags

json codec org:erratique

Published: 08 Mar 2023

README

Jsonm — Non-blocking streaming JSON codec for OCaml

v1.0.2

Jsonm is a non-blocking streaming codec to decode and encode the JSON data format. It can process JSON text without blocking on IO and without a complete in-memory representation of the data.

The alternative "uncut" codec also processes whitespace and (non-standard) JSON with JavaScript comments.

Jsonm is made of a single module and depends on Uutf. It is distributed under the ISC license.

Home page: http://erratique.ch/software/jsonm
Contact: Daniel Bünzli <daniel.buenzl i@erratique.ch>

Installation

Jsonm can be installed with opam:

opam install jsonm

If you don't use opam consult the opam file for build instructions.

Documentation

The documentation and API reference is automatically generated by ocamldoc from the interfaces. It can be consulted online and there is a generated version in the doc directory of the distribution.

Sample programs

If you installed jsonm with opam, it installed the jsontrip binary which, among other things, reads JSON on stdin and rewrites it on stdout; invoke with -help for more information. Sample code is located in the directory opam config var jsonm:doc.

In the distribution sample programs are located in the test directory of the distribution. They can be built with:

ocamlbuild -use-ocamlfind test/tests.otarget

The resulting binaries are in _build/test.

Dependencies (5)

  1. uutf > "1.0.0"
  2. topkg build & >= "1.0.3"
  3. ocamlbuild build
  4. ocamlfind build
  5. ocaml >= "4.05.0"

Dev Dependencies

None

Conflicts

None