parasor 0.1.1 → 0.1.2
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
CHANGED
|
@@ -1,24 +1,27 @@
|
|
|
1
1
|
# parasor
|
|
2
2
|
|
|
3
|
-
>
|
|
4
|
-
>
|
|
3
|
+
> Open-source, mobile-first workspace for operating your local development
|
|
4
|
+
> environment from a phone.
|
|
5
5
|
|
|
6
|
-
parasor runs on your development machine and
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
parasor runs on your development machine and turns it into a browser workspace
|
|
7
|
+
for your phone or another trusted device. The core is persistent PTY-backed
|
|
8
|
+
terminal control, so the host machine keeps the real project environment while
|
|
9
|
+
you create projects, install dependencies, run CLI tools, drive AI coding
|
|
10
|
+
agents, edit files, review diffs, inspect Git state, and open localhost dev
|
|
11
|
+
servers from mobile.
|
|
10
12
|
|
|
11
13
|
## Highlights
|
|
12
14
|
|
|
13
|
-
- **
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
- **Agent-independent architecture** - parasor is built around persistent PTY
|
|
16
|
+
terminal control, not a specific agent runtime. Use Codex, Claude Code,
|
|
17
|
+
ordinary shell tools, package managers, or existing project workflows as-is.
|
|
18
|
+
- **All-in-one mobile UI** - terminal, Git state, file tree, editor, diff,
|
|
19
|
+
browser views, localhost dev servers, and agent status are integrated in one
|
|
20
|
+
browser workspace.
|
|
21
|
+
- **Practical mobile development** - QR login, mobile terminal key controls,
|
|
22
|
+
clipboard/file upload, and persistent PTYs keep work usable from a phone.
|
|
18
23
|
- **Persistent PTYs** - the user-scope service installs a PTY host daemon so
|
|
19
24
|
scrollback and sessions survive server restarts.
|
|
20
|
-
- **Project-scoped file ops** - browse files, edit in CodeMirror, open diffs,
|
|
21
|
-
drag files into terminals, and paste images into an upload directory.
|
|
22
25
|
- **Agent-aware shims** - Claude Code and Codex wrappers add runtime integration
|
|
23
26
|
hooks without editing user agent configuration files.
|
|
24
27
|
- **Network port center** - detected localhost dev servers can be opened from
|
|
@@ -65,6 +68,22 @@ parasor qr # re-render QR + access URLs over the IPC socket
|
|
|
65
68
|
parasor qr --iface=en0 # prefer a specific network interface
|
|
66
69
|
```
|
|
67
70
|
|
|
71
|
+
## Update / Uninstall
|
|
72
|
+
|
|
73
|
+
Update a global install:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
npm install -g parasor@latest
|
|
77
|
+
parasor service restart # if service mode is installed
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
Uninstall the service before removing the package:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
parasor service uninstall
|
|
84
|
+
npm uninstall -g parasor
|
|
85
|
+
```
|
|
86
|
+
|
|
68
87
|
## Background Service
|
|
69
88
|
|
|
70
89
|
Keep parasor up after login. On macOS, the LaunchAgent also starts at user
|