v1.0.2: add homepage link and some keywords

This commit is contained in:
AJ ONeal 2018-08-06 12:49:17 -06:00
parent 8705e845cd
commit 5439f89482
2 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,7 @@ Secure Client for exposing TLS (aka SSL) secured services as plain-text connecti
Also ideal for multiplexing a single port with multiple protocols using SNI. Also ideal for multiplexing a single port with multiple protocols using SNI.
Unwrap a TLS connection Unwrap a TLS connection:
```bash ```bash
$ sclient whatever.com:443 localhost:3000 $ sclient whatever.com:443 localhost:3000
@ -24,6 +24,8 @@ Connect via netcat (nc)
$ nc telnet localhost 3000 $ nc telnet localhost 3000
``` ```
A poor man's (or Windows user's) makeshift replacement for `openssl s_client`, `stunnel`, or `socat`.
Install Install
======= =======

View File

@ -1,8 +1,9 @@
{ {
"name": "sclient", "name": "sclient",
"version": "1.0.1", "version": "1.0.2",
"description": "Secure Client for exposing TLS (aka SSL) secured services as plain-text connections locally. Also ideal for multiplexing a single port with multiple protocols using SNI.", "description": "Secure Client for exposing TLS (aka SSL) secured services as plain-text connections locally. Also ideal for multiplexing a single port with multiple protocols using SNI.",
"main": "index.js", "main": "index.js",
"homepage": "https://git.coolaj86.com/coolaj86/sclient.js",
"bin": { "bin": {
"sclient": "bin/sclient.js" "sclient": "bin/sclient.js"
}, },