yoop 0.1.4 → 0.1.5
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 +17 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -61,6 +61,19 @@ yoop clipboard receive A7K9
|
|
|
61
61
|
yoop clipboard sync
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
+
### Directory Sync
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
# Host a sync session
|
|
68
|
+
yoop sync ~/Projects/shared-folder
|
|
69
|
+
|
|
70
|
+
# Join a sync session
|
|
71
|
+
yoop sync A7K9 ~/Projects/shared-folder
|
|
72
|
+
|
|
73
|
+
# With exclusion patterns
|
|
74
|
+
yoop sync ./folder --exclude "*.log" --exclude "dist/"
|
|
75
|
+
```
|
|
76
|
+
|
|
64
77
|
## Features
|
|
65
78
|
|
|
66
79
|
- **Cross-platform**: Windows, Linux, and macOS
|
|
@@ -69,6 +82,7 @@ yoop clipboard sync
|
|
|
69
82
|
- **Private & secure**: TLS 1.3 encryption, data never leaves local network
|
|
70
83
|
- **Fast transfers**: Chunked transfers with verification
|
|
71
84
|
- **Resume capability**: Interrupted transfers resume automatically
|
|
85
|
+
- **Directory sync**: Real-time bidirectional folder synchronization
|
|
72
86
|
- **Web interface**: Browser-based UI for devices without CLI
|
|
73
87
|
|
|
74
88
|
## CLI Commands
|
|
@@ -78,7 +92,9 @@ yoop share <files...> # Share files/folders
|
|
|
78
92
|
yoop receive <code> # Receive with code
|
|
79
93
|
yoop clipboard share # Share clipboard
|
|
80
94
|
yoop clipboard receive <code> # Receive clipboard
|
|
81
|
-
yoop clipboard sync [code] # Bidirectional sync
|
|
95
|
+
yoop clipboard sync [code] # Bidirectional clipboard sync
|
|
96
|
+
yoop sync <directory> # Host a directory sync session
|
|
97
|
+
yoop sync <code> <directory> # Join a directory sync session
|
|
82
98
|
yoop scan # Scan for active shares
|
|
83
99
|
yoop web # Start web interface
|
|
84
100
|
yoop diagnose # Network diagnostics
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yoop",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Cross-platform local network file sharing - transfer files between devices on the same network using simple codes",
|
|
5
5
|
"bin": {
|
|
6
6
|
"yoop": "bin.js"
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"node": ">=16"
|
|
34
34
|
},
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@sanchxt/yoop-linux-x64-gnu": "0.1.
|
|
37
|
-
"@sanchxt/yoop-linux-x64-musl": "0.1.
|
|
38
|
-
"@sanchxt/yoop-linux-arm64-gnu": "0.1.
|
|
39
|
-
"@sanchxt/yoop-darwin-x64": "0.1.
|
|
40
|
-
"@sanchxt/yoop-darwin-arm64": "0.1.
|
|
41
|
-
"@sanchxt/yoop-win32-x64-msvc": "0.1.
|
|
36
|
+
"@sanchxt/yoop-linux-x64-gnu": "0.1.5",
|
|
37
|
+
"@sanchxt/yoop-linux-x64-musl": "0.1.5",
|
|
38
|
+
"@sanchxt/yoop-linux-arm64-gnu": "0.1.5",
|
|
39
|
+
"@sanchxt/yoop-darwin-x64": "0.1.5",
|
|
40
|
+
"@sanchxt/yoop-darwin-arm64": "0.1.5",
|
|
41
|
+
"@sanchxt/yoop-win32-x64-msvc": "0.1.5"
|
|
42
42
|
}
|
|
43
43
|
}
|