@fredlackey/devutils 0.0.14 → 0.0.16

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 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
- **Requirements:** Node.js 18+
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fredlackey/devutils",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "description": "A globally-installable Node.js CLI toolkit for bootstrapping and configuring development environments across any machine.",
5
5
  "main": "src/index.js",
6
6
  "bin": {