Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/alextes/reason-db
- Owner: alextes
- Created: 2018-10-27T12:59:21.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-12-04T00:13:21.000Z (about 3 years ago)
- Last Synced: 2025-01-01T10:17:54.009Z (6 days ago)
- Language: Reason
- Homepage:
- Size: 139 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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));
```