@fredlackey/devutils 0.0.14 → 0.0.15
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 +28 -1
- package/package.json +1 -1
- package/src/installs/cloudflare-warp.js +900 -0
- package/src/installs/cloudflare-warp.md +1047 -0
- package/src/installs/comet-browser.js +588 -0
- package/src/installs/comet-browser.md +731 -0
- package/src/installs/dbeaver.js +924 -0
- package/src/installs/dbeaver.md +939 -0
- package/src/installs/dependencies.md +11 -3
- package/src/installs/google-antigravity.js +913 -0
- package/src/installs/google-antigravity.md +1075 -0
- package/src/installs/installers.json +423 -5
- package/src/installs/installers.json.tmp +3953 -0
- package/src/installs/kiro.js +864 -0
- package/src/installs/kiro.md +1015 -0
- package/src/installs/moom.js +326 -0
- package/src/installs/moom.md +570 -0
- package/src/installs/nordvpn.js +892 -0
- package/src/installs/nordvpn.md +1052 -0
- package/src/installs/parallels-desktop.js +431 -0
- package/src/installs/parallels-desktop.md +446 -0
package/README.md
CHANGED
|
@@ -27,11 +27,38 @@ That's it. DevUtils CLI detects your operating system and installs everything yo
|
|
|
27
27
|
|
|
28
28
|
## Installation
|
|
29
29
|
|
|
30
|
+
### If You Have Node.js Installed
|
|
31
|
+
|
|
32
|
+
If you already have Node.js 18+ on your machine, install DevUtils CLI as a global npm package:
|
|
33
|
+
|
|
30
34
|
```bash
|
|
31
35
|
npm install -g @fredlackey/devutils
|
|
32
36
|
```
|
|
33
37
|
|
|
34
|
-
|
|
38
|
+
### Fresh Machine (No Node.js)
|
|
39
|
+
|
|
40
|
+
For a fresh machine without Node.js, run the bootstrap script. It installs everything you need: build tools, nvm, Node.js LTS, and DevUtils CLI.
|
|
41
|
+
|
|
42
|
+
**macOS:**
|
|
43
|
+
```bash
|
|
44
|
+
bash -c "$(curl -LsS https://raw.github.com/fredlackey/devutils-cli/main/setup.sh)"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**Ubuntu / Debian / Raspberry Pi OS:**
|
|
48
|
+
```bash
|
|
49
|
+
bash -c "$(wget -qO - https://raw.github.com/fredlackey/devutils-cli/main/setup.sh)"
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
**Amazon Linux / RHEL / Fedora:**
|
|
53
|
+
```bash
|
|
54
|
+
bash -c "$(curl -LsS https://raw.github.com/fredlackey/devutils-cli/main/setup.sh)"
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
The script is interactive by default. For automated/CI environments, add `--no-prompt`:
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
bash -c "$(curl -LsS https://raw.github.com/fredlackey/devutils-cli/main/setup.sh)" -- --no-prompt
|
|
61
|
+
```
|
|
35
62
|
|
|
36
63
|
## Quick Start
|
|
37
64
|
|
package/package.json
CHANGED