webssh2_client 0.2.21 → 0.2.22
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
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
WebSSH2 Client is a web-based SSH client that allows users to connect to SSH servers directly from their web browsers. It's built using modern web technologies and provides a seamless, secure SSH experience.
|
|
4
4
|
|
|
5
5
|
# EXPERIMENTAL
|
|
6
|
-
The current status is experimental, and this first version is a refactor of webssh2 v0.2.x to be compatible with a refactor of the same version of webssh2 as a stand-alone server-side component
|
|
6
|
+
The current status is experimental, and this first version is a refactor of webssh2 v0.2.x to be compatible with a refactor of the same version of webssh2 as a stand-alone server-side component running Node.js v6.9.1.
|
|
7
7
|
|
|
8
8
|
The intention is to harmonize the latest release of webssh2 by splitting out the client and server as separate repos (webssh2-client and webssh2-server) but joining them both together as modules in a parent webssh2 in an attempt to provide backward compatibility.
|
|
9
9
|
|
|
@@ -82,8 +82,7 @@ window.webssh2Config = {
|
|
|
82
82
|
text: null, // Custom header text
|
|
83
83
|
background: 'green', // Header background color
|
|
84
84
|
},
|
|
85
|
-
autoConnect: false
|
|
86
|
-
logLevel: 'info', // Logging level ('debug', 'info', 'warn', 'error')
|
|
85
|
+
autoConnect: false // Whether to connect automatically
|
|
87
86
|
};
|
|
88
87
|
```
|
|
89
88
|
|
|
@@ -238,11 +237,6 @@ The WebSSH2 client supports various URL parameters to customize the SSH connecti
|
|
|
238
237
|
- `headerBackground`: Background color for the header.
|
|
239
238
|
- Example: `?headerBackground=red`
|
|
240
239
|
|
|
241
|
-
### Debugging
|
|
242
|
-
|
|
243
|
-
- `logLevel`: Sets the logging level for debugging purposes.
|
|
244
|
-
- Example: `?logLevel=debug`
|
|
245
|
-
|
|
246
240
|
### Usage Example
|
|
247
241
|
|
|
248
242
|
A full URL with multiple parameters might look like this:
|
package/client/public/client.htm
CHANGED