Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jwoudenberg/rvn

Roc values as a serialization format
https://github.com/jwoudenberg/rvn

Last synced: about 2 months ago
JSON representation

Roc values as a serialization format

Awesome Lists containing this project

README

        

# .rvn (Raven)

RVN is a serialization format based of [Roc].
Any Roc value is valid RVN.

This means you can serialize to and from files with contents like this:

```roc
{
language: "Roc",
tags: [Fast, Friendly, Functional],
color: 0x7c38f5, # supports hex digits, comments too!
}
```

Many thanks for Luke Boswell for [roc-json][], which served as a great example showing how to write a library like this!

[Roc]: https://roc-lang.org
[roc-json]: https://github.com/lukewilliamboswell/roc-json