reptree 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
A tree data structure using CRDTs for seamless replication between peers.
|
|
4
4
|
|
|
5
|
+
> 🚧 **Work in Progress**: This package is under active development and APIs may change.
|
|
6
|
+
>
|
|
7
|
+
> RepTree was created for the [Supa](https://github.com/supaorg/supa) project, an open-source alternative to ChatGPT.
|
|
8
|
+
|
|
5
9
|
## Description
|
|
6
10
|
|
|
7
11
|
RepTree is a tree data structure for storing vertices with properties.
|
|
@@ -13,10 +17,6 @@ It uses 2 conflict-free replicated data types (CRDTs) to manage seamless replica
|
|
|
13
17
|
|
|
14
18
|
```bash
|
|
15
19
|
npm install reptree
|
|
16
|
-
# or
|
|
17
|
-
yarn add reptree
|
|
18
|
-
# or
|
|
19
|
-
pnpm add reptree
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
## Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reptree",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A tree data structure using CRDTs for seamless replication between peers",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -47,4 +47,4 @@
|
|
|
47
47
|
"tsup": "^8.0.1",
|
|
48
48
|
"typescript": "^5.2.2"
|
|
49
49
|
}
|
|
50
|
-
}
|
|
50
|
+
}
|