bonono
v0.7.0
Published
Peer-to-peer database component
Readme
Bonono
Bonono is a simple peer-to-peer data store that provides:
- Automatic replication
- Load time complexity of O(N_entries)
- Public access control (read, read/write, read-all/write-own, none)
Why is it called Bonono? Simple, Opple sounded too silly.
DISCLAIMER: Bonono is alpha software.
Using Bonono
- Put a script tag
<script type='module' src='https://unpkg.com/[email protected]/dist/bonono/bonono.esm.js'></script>in the head of your index.html
API reference
See the Bonono API reference.
Development
To develop Bonono, clone this repo to a new directory:
git clone https://github.com/jeremyorme/bonono.git
cd bonono/mainand run:
npm install
npm startTo build the component for production, run:
npm run buildTo run the unit tests for the component, run:
npm test