@m.hesari/plexus-linux-x64 0.1.14 → 0.1.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 +89 -0
- package/bin/plexus +0 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
---
|
|
2
|
+
|
|
3
|
+
```text
|
|
4
|
+
# 🧬 Plexus
|
|
5
|
+
|
|
6
|
+
**A high-performance, terminal-based task runner and process manager built for speed.**
|
|
7
|
+
|
|
8
|
+
Plexus is a developer-centric tool designed to orchestrate complex task workflows with a modern Terminal User Interface (TUI). Whether you're managing microservices, long-running build pipelines, or complex monorepos, Plexus provides the observability and control you need directly in your terminal.[cite: 1]
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## ✨ Features
|
|
13
|
+
|
|
14
|
+
- **Native Performance:** Built with **Rust** for near-zero overhead and memory safety.[cite: 1]
|
|
15
|
+
- **Modern TUI:** Interactive interface powered by `ratatui` for real-time process monitoring.[cite: 1]
|
|
16
|
+
- **Cross-Platform:** Native binaries distributed via npm for Linux (x64/ARM), macOS, and Windows.[cite: 1]
|
|
17
|
+
- **Developer-First:** Designed to work seamlessly in `pnpm` monorepos and advanced development environments.[cite: 1]
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## 🚀 Quick Start
|
|
22
|
+
|
|
23
|
+
You can run Plexus immediately without a permanent installation using `npx`:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
npx @m.hesari/plexus
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
### Installation
|
|
30
|
+
|
|
31
|
+
Install it globally via your preferred package manager:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# Using pnpm (Recommended)
|
|
35
|
+
pnpm add -g @m.hesari/plexus
|
|
36
|
+
|
|
37
|
+
# Using npm
|
|
38
|
+
npm install -g @m.hesari/plexus
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## 🛠 Configuration
|
|
44
|
+
|
|
45
|
+
Plexus looks for a configuration file in your project root (e.g., `plexus.json`).[cite: 1]
|
|
46
|
+
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"tasks": {
|
|
50
|
+
"dev": "pnpm run dev",
|
|
51
|
+
"build": "cargo build --release",
|
|
52
|
+
"test": "npm test"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## 📦 Architecture
|
|
60
|
+
|
|
61
|
+
Plexus uses a **hybrid distribution model**:[cite: 1]
|
|
62
|
+
|
|
63
|
+
1. **Core:** High-performance Rust binaries tailored for specific CPU architectures.[cite: 1]
|
|
64
|
+
2. **Wrapper:** A lightweight Node.js loader that detects your system profile (OS/Arch) and executes the correct native binary.[cite: 1]
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## 🏗 Development
|
|
69
|
+
|
|
70
|
+
If you want to build Plexus from source:[cite: 1]
|
|
71
|
+
|
|
72
|
+
1. **Clone the repo:**
|
|
73
|
+
```bash
|
|
74
|
+
git clone [https://github.com/mohamad-hesari/plexus.git](https://github.com/mohamad-hesari/plexus.git)
|
|
75
|
+
```
|
|
76
|
+
2. **Build the Rust core:**
|
|
77
|
+
```bash
|
|
78
|
+
cargo build --release
|
|
79
|
+
```
|
|
80
|
+
3. **Run the binary:**
|
|
81
|
+
```bash
|
|
82
|
+
./target/release/plexus
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## 📄 License
|
|
88
|
+
|
|
89
|
+
Distributed under the MIT License. See `LICENSE` for more information.[cite: 1]
|
package/bin/plexus
CHANGED
|
Binary file
|