@m.hesari/plexus-linux-x64 0.1.10 → 0.1.15
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/LICENSE +21 -0
- package/README.md +89 -0
- package/bin/plexus +0 -0
- package/package.json +8 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Mohammad Hesari
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
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
|
package/package.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m.hesari/plexus-linux-x64",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"os": [
|
|
5
6
|
"linux"
|
|
6
7
|
],
|
|
7
8
|
"cpu": [
|
|
8
9
|
"x64"
|
|
9
|
-
]
|
|
10
|
+
],
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/mohamad-hesari/plexus",
|
|
14
|
+
"directory": "packages/linux-x64"
|
|
15
|
+
}
|
|
10
16
|
}
|