@jamiexiongr/panda 0.1.3 → 0.1.4
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 +20 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
Combined installer and CLI entry for Panda.
|
|
4
4
|
|
|
5
|
+
This package is intended for end users who want to run Panda on their own machine and open it from a phone over Tailscale.
|
|
6
|
+
|
|
7
|
+
## Requirements
|
|
8
|
+
|
|
9
|
+
- Node.js `>= 20.19.0`
|
|
10
|
+
- A desktop installation of Tailscale with CLI access
|
|
11
|
+
- Your computer and phone joined to the same tailnet
|
|
12
|
+
- Recommended mobile browsers:
|
|
13
|
+
iPhone / iPad with Safari 16.4+;
|
|
14
|
+
Android with a current Chrome stable release
|
|
15
|
+
|
|
16
|
+
For the complete Chinese install and usage guide in this repository, see `docs/panda-user-guide.md`.
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
npm install -g @jamiexiongr/panda@latest --registry=https://registry.npmjs.org/
|
|
22
|
+
```
|
|
23
|
+
|
|
5
24
|
## Usage
|
|
6
25
|
|
|
7
26
|
```bash
|
|
@@ -18,3 +37,4 @@ panda agent tailscareserv
|
|
|
18
37
|
|
|
19
38
|
- `panda hub tailscareserv` is the quickest path to a mobile-installable HTTPS PWA inside your tailnet.
|
|
20
39
|
- `panda agent tailscareserv` makes the agent register `https/wss` direct URLs when no explicit direct URL env vars are set.
|
|
40
|
+
- If `tailscale serve` says it is not enabled on your tailnet, open the approval link printed by the CLI and enable Serve for that node.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jamiexiongr/panda",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Panda combined installer",
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"panda": "./bin/panda.cjs"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@jamiexiongr/panda-agent": "0.1.
|
|
12
|
-
"@jamiexiongr/panda-hub": "0.1.
|
|
11
|
+
"@jamiexiongr/panda-agent": "0.1.4",
|
|
12
|
+
"@jamiexiongr/panda-hub": "0.1.4"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"bin",
|