bs9 1.4.2 β 1.4.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 +13 -12
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# BS9 (Bun Sentinel 9) π
|
|
2
2
|
|
|
3
3
|
[](https://opensource.org/licenses/MIT)
|
|
4
|
-
[](https://github.com/xarhang/bs9)
|
|
5
5
|
[](SECURITY.md)
|
|
6
6
|
[](PRODUCTION.md)
|
|
7
7
|
[](https://github.com/bs9/bs9)
|
|
@@ -28,7 +28,8 @@ chmod +x ~/.local/bin/bs9
|
|
|
28
28
|
|
|
29
29
|
### π Platform Support
|
|
30
30
|
- **β
Auto-Detection**: Automatically detects platform and creates directories
|
|
31
|
-
- **β
Zero
|
|
31
|
+
- **β
Zero-Configuration**: No manual setup required
|
|
32
|
+
- **β
Lightweight**: Minimal dependencies, zero database required for core functionality
|
|
32
33
|
- **β
Cross-Platform**: Same commands work on all platforms
|
|
33
34
|
|
|
34
35
|
#### π§ Linux
|
|
@@ -182,27 +183,27 @@ bs9 resurrect --all # Restore all services
|
|
|
182
183
|
|
|
183
184
|
## π― Key Features
|
|
184
185
|
|
|
185
|
-
###
|
|
186
|
+
### β
**Zero-Config Deployment**: One-command production setup with `bs9 deploy`
|
|
186
187
|
- **One-Command Setup**: `bs9 deploy app.ts` does everything automatically
|
|
187
188
|
- **Production Ready**: Security hardening, health checks, metrics enabled
|
|
188
189
|
- **Hot Reload**: Update configurations without downtime
|
|
189
190
|
- **Port Detection**: Automatic service discovery and access URLs
|
|
190
191
|
- **Environment Management**: Easy environment variable updates
|
|
191
192
|
|
|
192
|
-
###
|
|
193
|
+
### β
**Enhanced Status Display**: Visual indicators (β
πββ οΈβΈοΈ) with detailed metrics
|
|
193
194
|
- **Visual Indicators**: β
πββ οΈβΈοΈ for instant health assessment
|
|
194
195
|
- **Perfect Alignment**: All columns properly aligned with accurate data
|
|
195
196
|
- **Detailed Metrics**: CPU, Memory, Uptime, Tasks, Port information
|
|
196
197
|
- **Troubleshooting Hints**: Actionable commands for common issues
|
|
197
198
|
- **Service Sections**: Running, Restarting, Failed services clearly separated
|
|
198
199
|
|
|
199
|
-
### π Real-time Monitoring
|
|
200
|
+
### π **Real-time Monitoring**: Live terminal UI with color-coded status
|
|
200
201
|
- **Terminal Dashboard**: Live terminal UI with color-coded status
|
|
201
202
|
- **Web Dashboard**: Browser-based monitoring with auto-refresh
|
|
202
203
|
- **Health Checks**: Automatic `/healthz`, `/readyz`, `/metrics` endpoints
|
|
203
204
|
- **SRE Metrics**: CPU, Memory, Uptime, Task tracking
|
|
204
205
|
|
|
205
|
-
### πΎ Backup & Recovery System
|
|
206
|
+
### πΎ **Backup & Recovery System**: Complete JSON-based backup system
|
|
206
207
|
- **Service Configuration Backup**: Complete JSON-based backup system
|
|
207
208
|
- **Timestamped Backups**: Version control for service configurations
|
|
208
209
|
- **Bulk Operations**: Save and restore all services at once
|
|
@@ -762,9 +763,9 @@ bs9 web --port 8080 # Generates secure session token
|
|
|
762
763
|
|
|
763
764
|
## π Documentation
|
|
764
765
|
|
|
765
|
-
- **[
|
|
766
|
-
- **[
|
|
767
|
-
- **[
|
|
768
|
-
- **[
|
|
769
|
-
- **[
|
|
770
|
-
- **[
|
|
766
|
+
- **[README.md](README.md)** - Complete getting started guide
|
|
767
|
+
- **[FAQ.md](FAQ.md)** - Frequently asked questions and answers
|
|
768
|
+
- **[COMMANDS.md](docs/COMMANDS.md)** - REST API documentation
|
|
769
|
+
- **[SECURITY.md](SECURITY.md)** - Security policies and reporting
|
|
770
|
+
- **[PRODUCTION.md](PRODUCTION.md)** - Production deployment guide
|
|
771
|
+
- **[CHANGELOG.md](CHANGELOG.md)** - Version history and updates
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bs9",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3",
|
|
4
4
|
"description": "Bun Sentinel 9 - High-performance, non-root process manager for Bun",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@opentelemetry/sdk-node": "^0.50.0",
|
|
38
38
|
"@opentelemetry/semantic-conventions": "^1.23.0",
|
|
39
39
|
"commander": "^14.0.2",
|
|
40
|
-
"pg": "^8.12.0",
|
|
41
40
|
"pino": "^9.3.1",
|
|
42
41
|
"prom-client": "^15.1.2"
|
|
43
42
|
},
|
|
44
43
|
"devDependencies": {
|
|
45
44
|
"@types/node": "^22.10.0",
|
|
46
|
-
"bun-types": "^1.1.0"
|
|
45
|
+
"bun-types": "^1.1.0",
|
|
46
|
+
"pg": "^8.12.0"
|
|
47
47
|
}
|
|
48
48
|
}
|