If anyone comes across any decentralised JSON style real time storage stuff like deep stream hub or google Firestore let me know. I’m on the hunt for a replacement at some point.
It maybe a service like above or maybe there is a P2P way to save and decode json style objects. I am using Vue.js as the front end.
This looks like the options but have yet to see anyone doing this in Vue (yet)
HyperDB
# HyperDB Architecture
HyperDB is a scalable peer-to-peer key-value database.
## Filesystem metaphor
HyperDB is structured to be used much like a traditional hierarchical
filesystem. A value can be written and read at locations like `/foo/bar/baz`,
and the API supports querying or tracking values at subpaths, like how watching
for changes on `/foo/bar` will report both changes to `/foo/bar/baz` and also
`/foo/bar/19`.
## Set of append-only logs (feeds)
A HyperDB is fundamentally a set of
[hypercore](https://github.com/mafintosh/hypercore)s. A *hypercore* is a secure
append-only log that is identified by a public key, and can only be written to
by the holder of the corresponding private key. Because it is append-only, old
values cannot be deleted nor modified. Because it is secure, a feed can be
downloaded from even untrustworthy peers and verified to be accurate. Any
This file has been truncated. show original
But for realtime I will want to use HyperDrive (multiwriter)