mirror of
https://github.com/bitinflow/localtunnel.git
synced 2026-03-16 06:55:54 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
86cd2d3c58 | ||
|
|
d70c743014 | ||
|
|
4940043378 | ||
|
|
b4a22bff64 | ||
|
|
176ec0479d | ||
|
|
fe316de3e0 |
@@ -1,3 +1,7 @@
|
|||||||
|
# 1.8.0 (2015-11-04)
|
||||||
|
|
||||||
|
* pass socket errors up to top level
|
||||||
|
|
||||||
# 1.7.0 (2015-07-22)
|
# 1.7.0 (2015-07-22)
|
||||||
|
|
||||||
* add short arg options
|
* add short arg options
|
||||||
|
|||||||
@@ -88,6 +88,11 @@ Tunnel.prototype._establish = function(info) {
|
|||||||
self.emit('url', info.url);
|
self.emit('url', info.url);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// re-emit socket error
|
||||||
|
tunnels.on('error', function(err) {
|
||||||
|
self.emit('error', err);
|
||||||
|
});
|
||||||
|
|
||||||
var tunnel_count = 0;
|
var tunnel_count = 0;
|
||||||
|
|
||||||
// track open count
|
// track open count
|
||||||
|
|||||||
@@ -2,16 +2,16 @@
|
|||||||
"author": "Roman Shtylman <shtylman@gmail.com>",
|
"author": "Roman Shtylman <shtylman@gmail.com>",
|
||||||
"name": "localtunnel",
|
"name": "localtunnel",
|
||||||
"description": "expose localhost to the world",
|
"description": "expose localhost to the world",
|
||||||
"version": "1.7.0",
|
"version": "1.8.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/shtylman/localtunnel.git"
|
"url": "git://github.com/shtylman/localtunnel.git"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"request": "2.11.4",
|
"request": "2.65.0",
|
||||||
"yargs": "3.15.0",
|
"yargs": "3.29.0",
|
||||||
"debug": "0.7.4",
|
"debug": "2.2.0",
|
||||||
"openurl": "1.1.0"
|
"openurl": "1.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
Reference in New Issue
Block a user