sftp-push-sync 1.0.4 → 1.0.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 +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,12 @@ Features:
|
|
|
22
22
|
|
|
23
23
|
The file `sftp-push-sync.mjs` is pure JavaScript (ESM), not TypeScript. Node.js can execute it directly as long as "type": "module" is specified in package.json or the file has the extension .mjs.
|
|
24
24
|
|
|
25
|
+
## Install
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npm i sftp-push-sync
|
|
29
|
+
```
|
|
30
|
+
|
|
25
31
|
## Config file
|
|
26
32
|
|
|
27
33
|
Create a `sync.config.json` in the root folder of your project:
|
|
@@ -103,3 +109,8 @@ You can safely delete the local cache at any time. The first analysis will then
|
|
|
103
109
|
## special features
|
|
104
110
|
|
|
105
111
|
The first run always takes a while, especially with lots of images – so be patient! Once the cache is full, it will be faster.
|
|
112
|
+
|
|
113
|
+
## Links
|
|
114
|
+
|
|
115
|
+
- <https://www.npmjs.com/package/sftp-push-sync>
|
|
116
|
+
- <https://github.com/cnichte/sftp-push-sync>
|