@chahuadev/chahuadev-hub-app 3.0.3 → 3.1.0
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 +39 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
license: other
|
|
3
|
+
language:
|
|
4
|
+
- en
|
|
5
|
+
tags:
|
|
6
|
+
- code-analysis
|
|
7
|
+
- static-analysis
|
|
8
|
+
- javascript
|
|
9
|
+
- electron
|
|
10
|
+
- emoji-cleaner
|
|
11
|
+
- junk-sweeper
|
|
12
|
+
- plugin-management
|
|
13
|
+
- desktop-app
|
|
14
|
+
- electron-app
|
|
15
|
+
- security
|
|
16
|
+
---
|
|
17
|
+
# Chahuadev Hub
|
|
18
|
+
|
|
1
19
|
# @chahuadev/chahuadev-hub-app
|
|
2
20
|
|
|
3
21
|
**Chahuadev Hub** — The official desktop hub by Chahuadev. Browse repositories, download apps, explore npm packages, and chat with the community — all in one dark-mode Electron app.
|
|
@@ -12,7 +30,7 @@
|
|
|
12
30
|
<a href="https://www.npmjs.com/package/@chahuadev/chahuadev-hub-app"><img src="https://img.shields.io/npm/v/@chahuadev/chahuadev-hub-app?style=for-the-badge&color=blue" alt="NPM Version"></a>
|
|
13
31
|
<a href="https://www.npmjs.com/package/@chahuadev/chahuadev-hub-app"><img src="https://img.shields.io/npm/dt/@chahuadev/chahuadev-hub-app?style=for-the-badge&color=success" alt="NPM Downloads"></a>
|
|
14
32
|
<img src="https://img.shields.io/badge/Platform-Windows%20%7C%20Linux-0078D4?style=for-the-badge" alt="Windows | Linux">
|
|
15
|
-
<img src="https://img.shields.io/badge/License-
|
|
33
|
+
<a href="LICENSE.md"><img src="https://img.shields.io/badge/License-Non--Commercial-blue?style=for-the-badge" alt="Non-Commercial License"></a>
|
|
16
34
|
</p>
|
|
17
35
|
|
|
18
36
|
</div>
|
|
@@ -27,7 +45,11 @@
|
|
|
27
45
|
|
|
28
46
|
```bash
|
|
29
47
|
npm install -g @chahuadev/chahuadev-hub-app --foreground-scripts --force
|
|
48
|
+
|
|
30
49
|
```
|
|
50
|
+
> The installer auto-downloads the correct binary for your platform. Use `--foreground-scripts` to see the download progress bar.
|
|
51
|
+
|
|
52
|
+
---
|
|
31
53
|
|
|
32
54
|
### 🐧 Linux — Global Install
|
|
33
55
|
|
|
@@ -49,7 +71,7 @@ sudo npm install -g @chahuadev/chahuadev-hub-app --foreground-scripts --force
|
|
|
49
71
|
> npm install -g @chahuadev/chahuadev-hub-app --foreground-scripts --force
|
|
50
72
|
> ```
|
|
51
73
|
|
|
52
|
-
###
|
|
74
|
+
### Launch
|
|
53
75
|
|
|
54
76
|
```bash
|
|
55
77
|
chahuadev-hub
|
|
@@ -57,9 +79,7 @@ chahuadev-hub
|
|
|
57
79
|
|
|
58
80
|
> **Note:** Downloaded apps are saved automatically to your `Downloads/ChahuadevHub` folder.
|
|
59
81
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
## � Running the AppImage on Linux / WSL2 (Ubuntu)
|
|
82
|
+
### 🐧 Running the AppImage on Linux / WSL2 (Ubuntu)
|
|
63
83
|
|
|
64
84
|
First install the required system libraries (one-time setup):
|
|
65
85
|
|
|
@@ -81,7 +101,14 @@ DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 \
|
|
|
81
101
|
|
|
82
102
|
> **WSL2 tip:** Copy to WSL native filesystem first:
|
|
83
103
|
> ```bash
|
|
84
|
-
>
|
|
104
|
+
> # Path after: npm install -g @chahuadev/chahuadev-hub-app
|
|
105
|
+
> # (no sudo)
|
|
106
|
+
>
|
|
107
|
+
> cp ~/.npm-global/lib/node_modules/@chahuadev/chahuadev-hub-app/bin/Chahuadev-Hub.AppImage /tmp/ChahuadevHub.AppImage
|
|
108
|
+
>
|
|
109
|
+
> # (with sudo)
|
|
110
|
+
> # cp /usr/lib/node_modules/@chahuadev/chahuadev-hub-app/bin/Chahuadev-Hub.AppImage /tmp/ChahuadevHub.AppImage
|
|
111
|
+
>
|
|
85
112
|
> chmod +x /tmp/ChahuadevHub.AppImage
|
|
86
113
|
> DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 /tmp/ChahuadevHub.AppImage \
|
|
87
114
|
> --appimage-extract-and-run --no-sandbox --disable-gpu
|
|
@@ -89,7 +116,10 @@ DISPLAY=:0 WAYLAND_DISPLAY=wayland-0 \
|
|
|
89
116
|
|
|
90
117
|
---
|
|
91
118
|
|
|
92
|
-
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Troubleshooting
|
|
93
123
|
|
|
94
124
|
### `node\r: No such file or directory` (Linux)
|
|
95
125
|
|
|
@@ -126,11 +156,11 @@ chahuadev-hub
|
|
|
126
156
|
|
|
127
157
|
---
|
|
128
158
|
|
|
129
|
-
##
|
|
159
|
+
## What It Does
|
|
130
160
|
|
|
131
161
|
Chahuadev Hub is an Electron desktop app that brings everything from the Chahuadev ecosystem into one place.
|
|
132
162
|
|
|
133
|
-
###
|
|
163
|
+
### Features
|
|
134
164
|
|
|
135
165
|
- 📊 **Dashboard** — Live stats and a full landing page webview with real-time download counts
|
|
136
166
|
- 📦 **npm Packages** — Browse all `@chahuadev` packages with version, description, and monthly download stats
|