Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@ A CLI for managing CRDT-backed files with automatic conflict resolution and peer

`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.

```
┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐
│ Your Machine │ │ Peer's Machine │ │ Another Peer │
│ │ sync │ │ sync │ │
│ project/ │─────▶│ project/ │─────▶│ project/ │
│ ├── .darn │◀─────│ ├── .darn │◀─────│ ├── .darn │
│ └── ... │ │ └── ... │ │ └── ... │
└─────────────────┘ └─────────────────┘ └─────────────────┘
```mermaid
graph LR
A["🖥️ Your Machine<br/>project/<br/>&nbsp;&nbsp;&nbsp;&nbsp;├── .darn<br/>└── ..."]
B["🖥️ Peer's Machine<br/>project/<br/>&nbsp;&nbsp;&nbsp;&nbsp;├── .darn<br/>└── ..."]
C["🖥️ Another Peer<br/>project/<br/>&nbsp;&nbsp;&nbsp;&nbsp;├── .darn<br/>└── ..."]

A -- sync --> B
B -- sync --> A
B -- sync --> C
C -- sync --> B
```

## Features
Expand Down
Loading