videonut 1.2.2 → 1.2.3
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 +37 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,8 +53,43 @@ VideoNut transforms your ideas into **production-ready YouTube documentaries** u
|
|
|
53
53
|
|
|
54
54
|
## 📦 Quick Install
|
|
55
55
|
|
|
56
|
-
### Prerequisites
|
|
57
|
-
|
|
56
|
+
### ⚠️ Prerequisites: Install Node.js First
|
|
57
|
+
|
|
58
|
+
VideoNut requires **Node.js 18+** to run. Choose one method to install:
|
|
59
|
+
|
|
60
|
+
<details>
|
|
61
|
+
<summary><b>📥 Option A: Download from Website (Easiest)</b></summary>
|
|
62
|
+
|
|
63
|
+
1. Go to **[nodejs.org](https://nodejs.org)**
|
|
64
|
+
2. Download the **LTS version** (recommended)
|
|
65
|
+
3. Run the installer and follow the prompts
|
|
66
|
+
4. Restart your computer
|
|
67
|
+
5. Verify installation: `node --version` and `npm --version`
|
|
68
|
+
|
|
69
|
+
</details>
|
|
70
|
+
|
|
71
|
+
<details>
|
|
72
|
+
<summary><b>💻 Option B: Install via Command Line</b></summary>
|
|
73
|
+
|
|
74
|
+
**Windows (PowerShell as Administrator):**
|
|
75
|
+
```powershell
|
|
76
|
+
winget install OpenJS.NodeJS.LTS
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**macOS:**
|
|
80
|
+
```bash
|
|
81
|
+
brew install node
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
**Linux (Ubuntu/Debian):**
|
|
85
|
+
```bash
|
|
86
|
+
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
|
|
87
|
+
sudo apt-get install -y nodejs
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
</details>
|
|
91
|
+
|
|
92
|
+
---
|
|
58
93
|
|
|
59
94
|
### Option 1: NPX (Recommended)
|
|
60
95
|
```bash
|
package/package.json
CHANGED