Proof of concept: drop-in JSON replacement that produces smaller payloads

by
, posted

JSOS, which stands for JavaScript Objects, but Smaller, is a proof-of-concept data interchange format for busy programmers. It aims to be a drop-in replacement for JSON that produces smaller payloads.

It may be a bad idea. (I want feedback!)

If you use JSON today, you might have code that looks like this:

require "json"

payload = JSON.generate({ "foo": "bar" })
parsed = JSON.parse(payload)

If you want to switch to JSOS, you just change “JSON” to “JSOS”…

require "jsos"

payload = JSOS.generate({ "foo": "bar" })
parsed = JSOS.parse(payload)

…and you’re done! All you need to do is update the import and two function calls.

This payload is ~30% smaller and you don’t need to do any additional work. Other data formats (like MessagePack, Cap’n Proto, CBOR, and BSON) are great, but they aren’t perfectly compatible. You can’t always drop them in without introducing bugs. If you’re a busy programmer, JSOS can improve efficiency with minimal effort. (Hopefully!)

JSOS uses a binary format—meaning payloads are not easily human-readable—that’s more efficient than JSON.

Project goals?

JSOS is currently at the “proof of concept” stage. I don’t know whether I’ll continue it, but if I do, these are the high-level goals:

There are also a few “non-goals”; in other words, things I don’t care about:

This is a proof of concept

I’ve said this a few times, but this is a proof of concept. As you might expect, there are a lot of things missing and a lot of rough edges.

I want feedback on a lot of things here.

If you like the idea and want me to continue, please let me know! Feel free to email me@evanhahn.com, mention me on the Fediverse at @EvanHahn@bigshoulders.city, or contact me another way.