jointhis.proxy 0.2.8 → 0.2.9
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 +8 -7
- package/dist/cli.d.ts +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,16 +21,17 @@ Usage
|
|
|
21
21
|
$ jointhis.proxy
|
|
22
22
|
|
|
23
23
|
Options
|
|
24
|
-
--
|
|
25
|
-
--
|
|
26
|
-
--
|
|
27
|
-
--
|
|
24
|
+
--tcp Internal TCP port.
|
|
25
|
+
--udp Internal UDP port.
|
|
26
|
+
--key Authentication key.
|
|
27
|
+
--subdomain Jointhis.party subdomain to assign.
|
|
28
|
+
--service Service to host, for example: minecraft -> mc
|
|
28
29
|
|
|
29
30
|
Examples
|
|
30
|
-
$ jointhis.proxy --key
|
|
31
|
+
$ jointhis.proxy --key=3002348970847937423423 --subdomain=mycoolserver --tcp=25565 --udp=19132
|
|
31
32
|
|
|
32
|
-
For interactive setup, just
|
|
33
|
-
|
|
33
|
+
For interactive setup, just run:
|
|
34
|
+
$ jointhis.proxy
|
|
34
35
|
```
|
|
35
36
|
|
|
36
37
|
Note to self, don't forget to `npm publish`
|
package/dist/cli.d.ts
CHANGED
package/dist/cli.js
CHANGED
|
@@ -7,7 +7,7 @@ import UI from './ui.js';
|
|
|
7
7
|
import fs from 'node:fs';
|
|
8
8
|
import { Spawn } from 'ink-spawn';
|
|
9
9
|
import { exec } from 'node:child_process';
|
|
10
|
-
export const version = `0.2.
|
|
10
|
+
export const version = `0.2.9`;
|
|
11
11
|
export var rtun;
|
|
12
12
|
// Get backend executable
|
|
13
13
|
if (process.platform == 'linux') {
|