Fast, rsync-powered two-way file sync with SQLite metadata and optional SSH. Designed for very large trees, low RAM, and observability.
- Rsync transport (latest rsync recommended)
- SQLite indexes per side (alpha / beta) + base snapshot for true 3-way merges
- Incremental scans with content hashes only when needed (based on ctime)
- Realtime micro-sync for hot files (debounced, safe on partial edits)
- SSH-friendly: stream remote deltas over stdin
- Copy on Write: local sync on COW filesystems (e.g., btrfs) uses copy on write, for significant time/space savings, and also maintains sparse files.
Requires Node.js 24+.
Open source under the MIT License.
reflect is NOT READY FOR PRODUCTION USE YET! There is still a significant todo list of subtle edge cases to handle, features to implement, tests to put in place, etc. Do not use this. Our plan is to finish this quickly, then put this into major production on https://cocalc.com, and then I'll update this README when it is much safer to trust reflect with your files.
Some differences compared to Mutagen, and todos:
- the command line options are different -- it's just inspired by Mutagen, not a drop in replacement
- conflicts are resolved using last write wins (clocks are sync'd), with close ties resolved by one chosen side always wins. There is no manual resolution mode.
- we use Sha-256 by default, but also support "sha512", "blake2b512", "blake2s256", "sha3-256", and "sha3-512".
- only supports macos and linux (currently)
- timestamps and permissions are fully preserved, whereas Mutagen mostly ignores them
See Design Details.
Project (local):
pnpm add reflect-sync
# or: npm i reflect-syncGlobal (handy for ops boxes):
pnpm add -g reflect-sync
# then: reflect helpBuild from source (dev):
pnpm install
pnpm build
pnpm testThe package exposes the reflect CLI (and aliases rfsync and reflect-sync) via its bin map.
reflect session -h
reflect session create /path/to/alpha /path/to/beta
reflect session list
reflect session status 1- The scheduler runs a scan on each side, computes a 3-way plan, runs rsync, and repeats on an adaptive interval.
- File changes are pushed in realtime via a micro-sync path while the main loop verifies and updates the base snapshot for last write wins 3-way merge semantics.
Two ways to do it:
reflect session create user@alpha.example.com:/tmp/alpha /tmp/betaor
reflect session create /tmp/beta user@alpha.example.com:/tmp/alphaThe scheduler will SSH to alpha-host, run a remote scan that streams NDJSON deltas, and ingest them locally.
- Scan writes metadata (path, size, ctime, mtime, hash, deleted, last_seen, hashed_ctime) to SQLite. Hashing is streamed and parallelized; we only rehash whenctimechanged since the last hash.
- Merge builds temp tables with relative paths, computes the 3-way plan (changed A, changed B, deleted A/B, resolve conflicts by --prefer), then feeds rsync with NUL-separated--files-fromlists.
- Scheduler:
- shallow root watchers + bounded deep “hot” watchers (recently touched subtrees),
- micro-sync a small list of hot files immediately,
- periodically run a full scan + merge; interval adapts to prior cycle time and recent rsync errors.
 
- Node.js: >= 24(set inengines).
- Build: pnpm build(TypeScript →dist/),rootDir=src,outDir=dist.
- Dev helpers: dev:scan,dev:ingest,dev:merge,dev:schedulerrun the TS sources viatsx.
You’ll end up with three DBs alongside your process (or wherever you point them):
- alpha.db— metadata for alpha root
- beta.db— metadata for beta root
- base.db— 3-way merge base (relative paths)
This separation makes it easy to relocate/rotate databases, inspect state, and compute user-facing reports (e.g. “what changed recently”, “top space users”).
- 
Inotify/FSEvents limits (Linux/macOS): scheduler uses shallow + bounded hot watchers. If you still hit limits, tune: - MAX_HOT_WATCHERS— cap number of deep watchers
- SHALLOW_DEPTH— 0 or 1 recommended
- HOT_DEPTH— typical 1–2
 
- 
DB size: large trees create large but inexpensive DBs. Use WAL mode (default) and SSDs for best throughput. 
pnpm install
pnpm build
pnpm test
pnpm link -g .
reflect -hTypeScript compiler outputs to dist/.
- Executables are provided via binand linked to the compiled files indist/. If you’re hacking locally in this repo, either runnode dist/cli.js …orpnpm link --global .to getreflecton your PATH.
- For SSH use, ensure the remote has Node 24+ and reflecton PATH (installed or included in your SEA image). Thenreflect scan … --emit-delta | reflect ingest …is all you need. Also, make sure you have ssh keys setup for passwordless login.
reflect-sync is a two-way file sync tool written in Typescript with deterministic Last-Write-Wins (LWW) semantics, built on rsync for transfer and SQLite for state. It aims to be predictable, debuggable, and fast for the common case of two roots (e.g., laptop ↔ server, container bind-mount ↔ host, staging ↔ prod).
- Deterministic LWW: Changes are decided by content timestamps with a small configurable epsilon; ties break toward the preferred side you choose.
- Hash-driven change detection: Content hashes, not “mtime only,” determine whether a file actually changed—keeps plans stable and reduces churn.
- First-class symlinks: Links are scanned via lstat, targets are stored and hashed aslink:<target>, and rsync preserves them.
- Simple & inspectable: Uses SQLite tables and NDJSON deltas—easy to debug, test, and reason about.
- MIT-licensed: Very permissive for both open-source and commercial use.
When you want:
- Two endpoints with predictable outcomes (no “conflict copies”).
- Great performance on large files or incremental edits (thanks to rsync).
- Transparent plans and state you can audit (SQLite + file lists).
- Symlink-accurate behavior across platforms that support them.
Not a perfect fit if you need:
- A multi-node mesh with discovery/relays (see Syncthing/Resilio).
- Built-in version history or a cloud UI (see Nextcloud/Dropbox).
- Interactive conflict resolution UX (see Unison); with ReflectSync there is never conflict resolution.
| Tool | License | Sync model | Conflict policy | Notes | 
|---|---|---|---|---|
| ReflectSync | MIT | Two-way between two roots | LWW (+ preferred side on tie) | rsync transport; SQLite state; symlink-aware | 
| Unison | GPL-3 | Two-way | Interactive or policy-driven | Mature, formal; heavier UX for headless flows | 
| Syncthing | MPL-2.0 | Continuous P2P mesh | Conflict copies on diverge | Great for many devices; background indexer | 
| Mutagen | Source-available (see project docs) | Dev-focused low-latency sync | Modes incl. “prefer side” | Very fast for dev trees; custom protocol | 
| lsyncd | GPL-2.0+ | One-way (event → rsync) | N/A | Simple near-real-time mirroring | 
Philosophy difference: ReflectSync favors determinism without duplicates or "conflict" files (LWW + preference). Tools like Syncthing/Dropbox prefer never lose data (create conflict files), which is ideal for less controlled, multi-party edits.
- Change detection: By content hash, permissions and (for root) uid/gid. Pure mtime or ctime changes do NOT count as edits. However, when there is an edit, the file is transfered with the mtime properly synced.
- Last write wins (LWW) resolution: The newer op timestamp wins; within --lww-epsilon-ms, the preferred side wins.
- Type changes: File ↔ symlink ↔ dir follow the same LWW rule (so type can change if the winner differs).
- Deletes: Deletions are first-class operations and replicate per LWW.
- Symlinks: Stored with target string and hashed as <target>; preserved by rsync.
- Permission modes: are always fully sync'd on posix systems.
- UID/GID: sync'd as numeric ids when the user is root; ignored otherwise.
- Large files / small edits: Excellent even for high latency links (rsync rolling checksums).
- Many small files: Competitive when watch-driven; initial cold scans take longer than always-on indexers.
- Observability: Plans are explicit (toAlpha,toBeta, delete lists) and replayable. State is visible in sqlite tables. After each scan a hash of each directory tree is computed, so you can be certain the state has converged.
- Linux / macOS: Fully supported (Node.js 24+). Uses lutimeswhere available for precise symlink mtimes.
- Windows: Works best via WSL or an rsync port. Symlink behavior depends on platform capabilities and permissions. Not yet tested for native Windows, but planned.
The MIT license is maximally permissive: embed, modify, and redistribute with minimal friction. This makes ReflectSync easy to adopt in both open-source stacks and commercial tooling.
| Scenario | Recommended | Why | Notes | 
|---|---|---|---|
| Two endpoints; predictable outcome; no conflict copies wanted | ReflectSync | Deterministic LWW with explicit tie-preference; symlink-aware; transparent plans | Great for laptop↔server, container bind-mounts, staging↔prod | 
| One-way near-real-time mirroring (e.g., deploy artifacts → webroot) | lsyncd | Event→batch→rsync is simple and robust | If you still want ReflectSync, just run one side as authoritative (prefer-alpha) | 
| Dev loop; tons of small files; low latency | Mutagen | Purpose-built for fast dev sync; very low overhead on edits | License differs; protocol/agent required | 
| Many devices; peer-to-peer mesh; zero central server | Syncthing | Discovery, relay, NAT traversal, continuous | Creates conflict copies on diverge (safer for multi-writer) | 
| Non-technical users; desktop + mobile; web UI; version history | Nextcloud or Dropbox | Turnkey clients + history + sharing | Heavier footprint; server (Nextcloud) or cloud (Dropbox) | 
| CI/CD cache or artifacts between two machines | ReflectSync | Deterministic, debuggable, rsync-efficient on large binaries | Keep file lists tight; parallelize rsync if needed | 
| Large binary files with small edits over LAN | ReflectSync | rsync rolling checksum excels | Consider --inplaceonly if types won’t change and perms allow | 
| Interactive conflict resolution preferred | Unison | Mature interactive/tunable policy engine | More friction in headless automation | 
| Multi-writer folder; avoid any silent overwrite | Syncthing | Uses conflict files rather than overwrite | Safer for less-controlled edits; not deterministic | 
| Windows-first environment | Syncthing / Dropbox | Native UX; no rsync/WSL needed | ReflectSync works best via WSL (document this path) | 
| Air-gapped / restricted SSH only | ReflectSync | rsync over SSH; explicit file lists; easy to audit | Works well in regulated environments | 
| Exact promotion between environments (e.g., staging → prod) | ReflectSync | Precise deletes; type changes honored; no conflict files | Keep backups if human edits happen in prod | 
| One-way ingest to object storage (S3, etc.) | rclone (adjacent tool) | Direct backends; checksumming; retries | Different problem space; can be combined with ReflectSync locally | 
Legend:
- LWW = Last-Write-Wins. In ReflectSync, ties within --lww-epsilon-msbreak toward your preferred side (alpha/beta).
- “Conflict copies” = tools that create duplicate files when both sides changed (e.g., filename (conflict copy).txt).
Rule of thumb
- Want determinism between two roots → pick ReflectSync.
- Want a mesh or never lose data via conflict files → pick Syncthing (or cloud sync).
- Want dev-loop speed → pick Mutagen.
- Want one-way mirroring → pick lsyncd.
- Want history + sharing → pick Nextcloud/Dropbox.