Okjson
Ruby json parser that pretty much fails to be over-engineered
Install / Use
/learn @kr/OkjsonREADME
This is a json parser, written in ruby. It has no dependencies other than ruby. See the file tested-on for a complete list of ruby interpreters used for testing.
To Use:
OkJson.encode({"abc" => [123, -456.789]}) => "{"abc":[123,-456.789]}"
OkJson.decode('{"abc":[123,-456.789e0]}') => {"abc"=>[123, -456.789]}
That's it.
This library is intended to be "vendored". It is not a gem; instead, copy okjson.rb into your project and "require" it directly. This method helps you avoid an external dependency. It's only about 575 lines of source; about half of that is UTF-8 coding. If you bundle okjson with your library, please change the module's name to something like MyLib::OkJson, to avoid conflicts with other libraries.
OkJson is not particularly fast or flexible, but it is designed to be simple and portable. It should suffice for most needs.
It provides two guarantees:
- okjson will never generate invalid json
- OkJson.decode(OkJson.encode(x)) == x
Note for people who've used other ruby json libraries: json does not represent symbols, so okjson does not encode them. It won't convert them to strings; that would silently corrupt your data. The same holds for all of ruby's other data types that don't exist in json, including Range, Regexp, Proc, Time, and user-defined classes.
Patches to increase the correctness, readability, or portability of the source code will be gratefully accepted. Other patches (for example, extra features or optional behavior) likely won't.
To Test:
$ ./rubies ruby rbx /opt/ruby192/bin/ruby
(Note: these tests originated at https://github.com/genki/json but have been changed to follow RFC 4627 and revised substantially.)
Related Skills
node-connect
344.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
96.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
344.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
344.1kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
