@hasindu---7/ff-link-extract 2.0.3 → 2.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 +26 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,6 +29,14 @@ cd "c:\Users\Owner\Documents\Hasindu\Fitgirl scr"
|
|
|
29
29
|
npm install
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
If you installed this package locally in another project with `npm install @hasindu---7/ff-link-extract@latest`, run commands using `npm exec`:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm exec ff-link-extract -- --help
|
|
36
|
+
npm exec ff-link-extract-init -- --help
|
|
37
|
+
npm exec ff-link-extract-autorun -- --help
|
|
38
|
+
```
|
|
39
|
+
|
|
32
40
|
### 3) Create starter files in this folder
|
|
33
41
|
|
|
34
42
|
```bash
|
|
@@ -75,6 +83,12 @@ node bin/ff_extract_links_autorun.js -c autorun.config.json --dry-run
|
|
|
75
83
|
node bin/ff_extract_links.js -i urls.txt -o all-direct-links
|
|
76
84
|
```
|
|
77
85
|
|
|
86
|
+
Using local package install (`npm exec`):
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
npm exec ff-link-extract -- -i urls.txt -o all-direct-links
|
|
90
|
+
```
|
|
91
|
+
|
|
78
92
|
- `--help`
|
|
79
93
|
|
|
80
94
|
```bash
|
|
@@ -93,6 +107,12 @@ node bin/ff_extract_links.js --version
|
|
|
93
107
|
node bin/ff_extract_links_autorun.js -c autorun.config.json
|
|
94
108
|
```
|
|
95
109
|
|
|
110
|
+
Using local package install (`npm exec`):
|
|
111
|
+
|
|
112
|
+
```bash
|
|
113
|
+
npm exec ff-link-extract-autorun -- -c autorun.config.json
|
|
114
|
+
```
|
|
115
|
+
|
|
96
116
|
Options:
|
|
97
117
|
|
|
98
118
|
- `--interval-ms`
|
|
@@ -106,6 +126,12 @@ Options:
|
|
|
106
126
|
node bin/ff_extract_links_init.js
|
|
107
127
|
```
|
|
108
128
|
|
|
129
|
+
Using local package install (`npm exec`):
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
npm exec ff-link-extract-init --
|
|
133
|
+
```
|
|
134
|
+
|
|
109
135
|
Options:
|
|
110
136
|
|
|
111
137
|
- `--force`
|