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.
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
=======

View File

@ -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"
},