nport 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,6 +17,14 @@ NPort is a **Node.js-based tool** that tunnels HTTP connections through **Socket
17
17
  ## **Install**
18
18
 
19
19
  ```sh
20
+ # install nport from npm
21
+
22
+ npm i nport # local install
23
+
24
+ npm i -g nport # global install
25
+
26
+ # alternative: install from github
27
+
20
28
  npm install git+https://github.com/tuanngocptn/nport.git # local install
21
29
 
22
30
  npm install -g git+https://github.com/tuanngocptn/nport.git # global install
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "Nick Pham <nickpham@nooplabs.com>, source from socket-tunnel (Eric Barch <ebarch@nooplabs.com>)",
3
3
  "name": "nport",
4
4
  "description": "Tunnel HTTP Connections via socket.io streams.",
5
- "version": "1.0.0",
5
+ "version": "1.0.1",
6
6
  "dependencies": {
7
7
  "is-valid-domain": "0.0.5",
8
8
  "optimist": "^0.6.1",