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.
Files changed (2) hide show
  1. package/README.md +13 -12
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # BS9 (Bun Sentinel 9) πŸš€
2
2
 
3
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
- [![Version](https://img.shields.io/badge/version-1.4.2-blue.svg)](https://github.com/xarhang/bs9)
4
+ [![Version](https://img.shields.io/badge/version-1.4.3-blue.svg)](https://github.com/xarhang/bs9)
5
5
  [![Security](https://img.shields.io/badge/security-Enterprise-green.svg)](SECURITY.md)
6
6
  [![Production Ready](https://img.shields.io/badge/production-Ready-brightgreen.svg)](PRODUCTION.md)
7
7
  [![Cross-Platform](https://img.shields.io/badge/platform-Linux%20%7C%20macOS%20%7C%20Windows-lightgrey.svg)](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 Configuration**: No manual setup required
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
- ### πŸš€ Zero-Config Deployment (KILLER FEATURE)
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
- ### πŸ“Š Enhanced Status Display
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
- - **[Production Guide](PRODUCTION.md)** - Production deployment and operations
766
- - **[Security Policy](SECURITY.md)** - Security features and vulnerability reporting
767
- - **[Architecture](ARCHITECTURE.md)** - System architecture and design
768
- - **[Installation Guide](INSTALL.md)** - Detailed installation instructions
769
- - **[Contributing](CONTRIBUTING.md)** - Development and contribution guidelines
770
- - **[Changelog](CHANGELOG.md)** - Version history and roadmap
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.2",
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
  }