~regan-koopmans/jenna

A JSON parser written in Go with no dependencies
f3b56ae9 — Regan-Koopmans 8 months ago
Parse negative numbers
f5872e51 — Regan-Koopmans 1 year, 1 month ago
Add test
57348d24 — Regan-Koopmans 1 year, 3 months ago
Add gitignore, update README

refs

master
browse  log 

clone

read-only
https://git.sr.ht/~regan-koopmans/jenna
read/write
git@git.sr.ht:~regan-koopmans/jenna

You can also use your local clone with git send-email.

#jenna

This is a small utility for interacting with JSON using Go, with zero external dependencies. This code is not production ready and is for educational use only. Currently the goal is to make this an "optimistic" parser, meaning that it will parse all valid JSON documents, but the behaviour of invalid JSON documents may not be well defined.

#Building and Running

You can use jenna by cloning the repo and running:

go build
./jenna example.json

This should print the json file included in the repository.