sshifu-server 0.6.3 → 0.7.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 +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,11 +4,23 @@ SSH authentication server with OAuth gateway and certificate authority.
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
### Quick Start (Recommended)
|
|
8
|
+
|
|
9
|
+
Use `npx` to run without installing:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx sshifu-server
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Install Globally
|
|
16
|
+
|
|
17
|
+
For frequent use, install globally:
|
|
18
|
+
|
|
7
19
|
```bash
|
|
8
20
|
npm install -g sshifu-server
|
|
9
21
|
```
|
|
10
22
|
|
|
11
|
-
|
|
23
|
+
Then use directly:
|
|
12
24
|
|
|
13
25
|
```bash
|
|
14
26
|
sshifu-server
|