diff --git a/README.md b/README.md index 63f1d9b..d22d32d 100644 --- a/README.md +++ b/README.md @@ -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. -Unwrap a TLS connection +Unwrap a TLS connection: ```bash $ sclient whatever.com:443 localhost:3000 @@ -24,6 +24,8 @@ Connect via netcat (nc) $ nc telnet localhost 3000 ``` +A poor man's (or Windows user's) makeshift replacement for `openssl s_client`, `stunnel`, or `socat`. + Install ======= diff --git a/package.json b/package.json index f96abf3..82ab19a 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,9 @@ { "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.", "main": "index.js", + "homepage": "https://git.coolaj86.com/coolaj86/sclient.js", "bin": { "sclient": "bin/sclient.js" },