Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/alextes/reason-db

Toy ReasonML json database.
https://github.com/alextes/reason-db

Last synced: 2 days ago
JSON representation

Toy ReasonML json database.

Awesome Lists containing this project

README

        

# Reasonable JSON DB
A toy JS JSON DB written with ReasonML.

# Example.re

```reason
open Db;
let me: Person.t = {id: 0, name: "alex"};
let _ = add(Person(me));
Js.log(getPerson(0));
```