25 lines
497 B
JavaScript
25 lines
497 B
JavaScript
|
var EventEmitter = require('events').EventEmitter;
|
||
|
var debug = require('debug')('localtunnel:client');
|
||
|
|
||
|
var Tunnel = require('./lib/Tunnel');
|
||
|
|
||
|
module.exports = function localtunnel(port, opt, fn) {
|
||
|
if (typeof opt === 'function') {
|
||
|
fn = opt;
|
||
|
opt = {};
|
||
|
}
|
||
|
|
||
|
opt = opt || {};
|
||
|
opt.port = port;
|
||
|
|
||
|
var client = Tunnel(opt);
|
||
|
client.open(function(err) {
|
||
|
if (err) {
|
||
|
return fn(err);
|
||
|
}
|
||
|
|
||
|
fn(null, client);
|
||
|
});
|
||
|
return client;
|
||
|
};
|