Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/automerge/hypermerge
Build p2p collaborative applications without any server infrastructure in Node.js
https://github.com/automerge/hypermerge
Last synced: about 1 month ago
JSON representation
Build p2p collaborative applications without any server infrastructure in Node.js
- Host: GitHub
- URL: https://github.com/automerge/hypermerge
- Owner: automerge
- License: mit
- Archived: true
- Created: 2018-01-03T18:56:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-30T18:21:04.000Z (almost 2 years ago)
- Last Synced: 2024-09-22T02:34:59.437Z (about 1 month ago)
- Language: TypeScript
- Homepage:
- Size: 3.08 MB
- Stars: 1,278
- Watchers: 34
- Forks: 66
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - hypermerge
- awesome-frontend-graph-library - Hypermerge - only log. (Server / JavaScript)
- my-awesome - automerge/hypermerge - 01 star:1.3k fork:0.1k Build p2p collaborative applications without any server infrastructure in Node.js (TypeScript)
- awesome-starred - automerge/hypermerge - Build p2p collaborative applications without any server infrastructure in Node.js (others)
README
# Hypermerge
> **Warning**
> Hypermerge is deprecated.
> This library is no longer maintained and uses an ancient and slow version of Automerge.
> We strongly recommend you adopt https://github.com/automerge/automerge-repo instead.Hypermerge is a Node.js library for building p2p collaborative applications
without any server infrastructure. It combines [Automerge](https://github.com/automerge/automerge),
a CRDT, with [hypercore](https://github.com/mafintosh/hypercore), a distributed append-only log.This project provides a way to have apps data sets that are
conflict free and offline first (thanks to CRDT's) and serverless (thanks to
hypercore/DAT).While the DAT community has done a lot of work to secure their tool set, zero
effort has been made with hypermerge itself to deal with security and privacy
concerns. Due to the secure nature of the tools its built upon a properly
audited and secure version of this library would be possible in the future.## How it works
Hypermerge stores an automerge document as a set of separate Hypercores, one per actor ID. Each
actor ID in the document is the discovery key of a Hypercore, which allows recursive lookup.## Critique
This strategy works for a small number of documents, but is very slow to synchronize due
to the vast number of Hypercores required for a large collection. It also doesn't work well with
the new Automerge file format which consolidates sequential changes during storage: each change
has its own Hypercore entry with all the attendant metadata. To put this in context, a single
keystroke in a textfield will result in hundreds of bytes of data if you use Hypermerge.## Examples
There are several example repos in the `/examples` directory, including a very simple two-repo
code demo and a simple CLI-based chat application.The best demonstration of Hypermerge is PushPin, which shows Hypermerge in "full flight", including
taking advantage of splitting the fast, simple front-end from the more expensive, slower back-end.## Concepts
The base object you make with hypermerge is a Repo. A repo is responsible for
managing documents and replicating to peers.### Basic Setup (Serverless or with a Server)
```ts
import { Repo } from 'hypermerge'
import Hyperswarm from 'hyperswarm'const path = '.data'
const repo = new Repo({ path })
repo.setSwarm(Hyperswarm())
```### Create / Edit / View / Delete a document
```ts
const url = repo.create({ hello: 'world' })repo.doc(url, (doc) => {
console.log(doc) // { hello: "world" }
})// this is an automerge change function - see automerge for more info
// basically you get to treat the state as a plain old javacript object
// operations you make will be added to an internal append only log and
// replicated to peersrepo.change(url, (state: any) => {
state.foo = 'bar'
})repo.doc(url, (doc) => {
console.log(doc) // { hello: "world", foo: "bar" }
})// to watch a document that changes over time ...
const handle = repo.watch(url, (doc: any) => {
console.log(doc)
if (doc.foo === 'bar') {
handle.close()
}
})
```_NOTE_: If you're familiar with Automerge: the `change` function in Hypermerge
is asynchronous, while the `Automerge.change` function is synchronous. What this
means is that although `Automerge.change` returns an object representing the new
state of your document, `repo.change` (or `handle.change`) does NOT. So:```ts
// ok in Automerge!
doc1 = Automerge.change(doc1, 'msg', (doc) => {
doc.foo = 'bar'
})// NOT ok in Hypermerge!
doc1 = repo.change(url1, (doc) => {
doc.foo = 'bar'
})
```Instead, you should expect to get document state updates via `repo.watch`
(or `handle.subscribe`) as shown in the example above.### Two repos on different machines
```ts
const docUrl = repoA.create({ numbers: [2, 3, 4] })
// this will block until the state has replicated to machine BrepoA.watch(docUrl, (state) => {
console.log('RepoA', state)
// { numbers: [2,3,4] }
// { numbers: [2,3,4,5], foo: "bar" }
// { numbers: [2,3,4,5], foo: "bar" } // (local changes repeat)
// { numbers: [1,2,3,4,5], foo: "bar", bar: "foo" }
})repoB.watch(docUrl, (state) => {
console.log('RepoB', state)
// { numbers: [1,2,3,4,5], foo: "bar", bar: "foo" }
})repoA.change(docUrl, (state) => {
state.numbers.push(5)
state.foo = 'bar'
})repoB.change(docUrl, (state) => {
state.numbers.unshift(1)
state.bar = 'foo'
})
```### Accessing Files
Hypermerge supports a special kind of core called a hyperfile. Hyperfiles are
unchanging, written-once hypercores that store binary data.Here's a simple example of reading and writing files.
```ts
// Write an hyperfile
const fileStream = fs.createReadStream('image.png')
const { url } = await repo.files.write(fileStream, 'image/png')// Read an hyperfile
const fileStream = fs.createWriteStream('image.png')
const hyperfileStream = await repo.files.read(url)hyperfileStream.pipe(fileStream)
```Note that hyperfiles are conveniently well-suited to treatment as a native
protocol for Electron applications. This allows you to refer to them throughout
your application directly as though they were regular files for images and other
assets without any special treatment. Here's how to register that:```js
protocol.registerStreamProtocol(
'hyperfile',
(request, callback) => {
try {
const stream = await repo.files.read(request.url)
callback(stream)
} catch (e) {
log(e)
}
},
(error) => {
if (error) {
log('Failed to register protocol')
}
}
)
```### Splitting the Front-end and Back-end
Both Hypermerge and Automerge supports separating the front-end (where materialized documents live and changes are made) from the backend (where CRDT computations are handled as well as networking and compression.) This is useful for maintaining application performance by moving expensive computation operations off of the render thread to another location where they don't block user input.
The communication between front-end and back-end is all done via simple Javascript objects and can be serialized/deserialized through JSON if required.
```js
// establish a back-end
const back = new RepoBackend({ path: HYPERMERGE_PATH, port: 0 })
const swarm = Hyperswarm({ /* your config here */ })
back.setSwarm(swarm)// elsewhere, create a front-end (you'll probably want to do this in different threads)
const front = new RepoFrontend()// the `subscribe` method sends a message stream, the `receive` receives it
// for demonstration here we simply output JSON and parse it back in the same location
// note that front-end and back-end must each subscribe to each other's streams
back.subscribe((msg) => front.receive(JSON.parse(JSON.stringify(msg))))
front.subscribe((msg) => back.receive(JSON.parse(JSON.stringify(msg))))}
```_Note: each back-end only supports a single front-end today._
### Related libraries
[automerge]: https://github.com/automerge/automerge
[hypercore]: https://github.com/mafintosh/hypercore