Skip to content
This repository was archived by the owner on Apr 30, 2026. It is now read-only.

Commit e4dcb74

Browse files
authored
Improve README diagram (#20)
1 parent 5891e16 commit e4dcb74

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@ A CLI for managing CRDT-backed files with automatic conflict resolution and peer
88

99
`darn` brings collaborative editing to your filesystem. Files are stored as [Automerge] documents and synchronized peer-to-peer using [Subduction]. Think of it as "Dropbox meets git" - but without merge conflicts or the vendor lock-in.
1010

11-
```
12-
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
13-
│ Your Machine │ │ Peer's Machine │ │ Another Peer │
14-
│ │ sync │ │ sync │ │
15-
│ project/ │─────▶│ project/ │─────▶│ project/ │
16-
│ ├── .darn │◀─────│ ├── .darn │◀─────│ ├── .darn │
17-
│ └── ... │ │ └── ... │ │ └── ... │
18-
└─────────────────┘ └─────────────────┘ └─────────────────┘
11+
```mermaid
12+
graph LR
13+
A["🖥️ Your Machine<br/>project/<br/>&nbsp;&nbsp;&nbsp;&nbsp;├── .darn<br/>└── ..."]
14+
B["🖥️ Peer's Machine<br/>project/<br/>&nbsp;&nbsp;&nbsp;&nbsp;├── .darn<br/>└── ..."]
15+
C["🖥️ Another Peer<br/>project/<br/>&nbsp;&nbsp;&nbsp;&nbsp;├── .darn<br/>└── ..."]
16+
17+
A -- sync --> B
18+
B -- sync --> A
19+
B -- sync --> C
20+
C -- sync --> B
1921
```
2022

2123
## Features

0 commit comments

Comments
 (0)