peakurl 0.3.2 → 1.0.1
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 +15 -0
- package/bin/peakurl.js +853 -452
- package/man/peakurl.1 +363 -0
- package/package.json +13 -9
package/README.md
CHANGED
|
@@ -64,6 +64,7 @@ export PEAKURL_API_KEY=0123456789abcdef0123456789abcdef0123456789abcdef
|
|
|
64
64
|
| `peakurl whoami` | Show the current authenticated account. |
|
|
65
65
|
| `peakurl logout` | Remove saved local CLI credentials. |
|
|
66
66
|
| `peakurl status` | Show the current system status snapshot for the site. |
|
|
67
|
+
| `peakurl core download` | Download and extract the latest PeakURL core package. |
|
|
67
68
|
| `peakurl create <url>` | Create a new short link. |
|
|
68
69
|
| `peakurl import <file>` | Import links from a local CSV, JSON, or XML file. |
|
|
69
70
|
| `peakurl export` | Export accessible links as CSV, JSON, or XML. |
|
|
@@ -120,6 +121,20 @@ If you need the raw payload:
|
|
|
120
121
|
peakurl status --json
|
|
121
122
|
```
|
|
122
123
|
|
|
124
|
+
Download, verify, and extract the current PeakURL core package into the current directory:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
peakurl core download
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
The command checks the published release checksum before extracting files. If the current directory already contains release-managed files, the command stops by default.
|
|
131
|
+
|
|
132
|
+
Use `--force` only when you intentionally want those files replaced:
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
peakurl core download --force
|
|
136
|
+
```
|
|
137
|
+
|
|
123
138
|
Delete a link:
|
|
124
139
|
|
|
125
140
|
```bash
|