cmux 0.1.0 → 0.2.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 +44 -6
- package/cmux-cli +0 -0
- package/package.json +22 -7
- package/index.js +0 -6
package/README.md
CHANGED
|
@@ -1,16 +1,54 @@
|
|
|
1
1
|
# cmux
|
|
2
2
|
|
|
3
|
-
A multiplexer
|
|
3
|
+
A single-executable web app multiplexer with built-in Convex backend. cmux allows you to run multiple coding agent CLIs in parallel across different tasks, each with their own isolated environment.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- 🚀 Single executable file - no installation required
|
|
8
|
+
- 🔧 Built-in Convex backend for data persistence
|
|
9
|
+
- 🌐 Web-based UI for managing tasks
|
|
10
|
+
- 🐳 Docker integration for isolated environments
|
|
11
|
+
- ⚡ Fast startup and minimal dependencies
|
|
4
12
|
|
|
5
13
|
## Installation
|
|
6
14
|
|
|
7
15
|
```bash
|
|
8
|
-
npm install cmux
|
|
16
|
+
npm install -g cmux
|
|
9
17
|
```
|
|
10
18
|
|
|
19
|
+
Or download the binary directly from the releases page.
|
|
20
|
+
|
|
11
21
|
## Usage
|
|
12
22
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
23
|
+
Simply run:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
cmux
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
This will:
|
|
30
|
+
1. Start a local Convex backend on port 9777
|
|
31
|
+
2. Start the web server on port 9776
|
|
32
|
+
3. Open your browser to http://localhost:9776
|
|
33
|
+
|
|
34
|
+
### Options
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
cmux --port 8080 # Use a different port
|
|
38
|
+
cmux --help # Show all options
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## First Run
|
|
42
|
+
|
|
43
|
+
On first run, cmux will extract its bundled files to `~/.cmux/`. This includes:
|
|
44
|
+
- The Convex backend binary and database
|
|
45
|
+
- Web application static files
|
|
46
|
+
- Configuration files
|
|
47
|
+
|
|
48
|
+
## Development
|
|
49
|
+
|
|
50
|
+
cmux is part of the coderouter project. See the main repository for development instructions.
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
MIT
|
package/cmux-cli
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,16 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmux",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Single-executable web app multiplexer with built-in Convex backend",
|
|
5
|
+
"bin": {
|
|
6
|
+
"cmux": "./cmux-cli"
|
|
8
7
|
},
|
|
9
|
-
"
|
|
8
|
+
"files": [
|
|
9
|
+
"cmux-cli",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"cli",
|
|
14
|
+
"web",
|
|
15
|
+
"server",
|
|
16
|
+
"convex",
|
|
17
|
+
"multiplexer"
|
|
18
|
+
],
|
|
10
19
|
"author": "Lawrence Chen",
|
|
11
20
|
"license": "MIT",
|
|
21
|
+
"engines": {
|
|
22
|
+
"node": ">=16.0.0"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
12
27
|
"repository": {
|
|
13
28
|
"type": "git",
|
|
14
|
-
"url": "https://github.com/lawrencechen/
|
|
29
|
+
"url": "https://github.com/lawrencechen/coderouter.git"
|
|
15
30
|
}
|
|
16
31
|
}
|