GithubHelp home page GithubHelp logo

mikemitchel / miner Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bitovi/miner

0.0 1.0 0.0 1.23 MB

Localhost tunnelling service wrappers

Home Page: http://daffl.github.com/miner

JavaScript 100.00%

miner's Introduction

Miner

Build Status Greenkeeper badge

Miner wraps localhost tunelling services to easily expose your Node server to the web. As always installation is as easy as

npm install miner

The Miner service interface looks like this:

var miner = require('miner');
miner.<servicename>(configuration, function(error, url, process) {
  error // -> An Error instance on errors
  url // -> The tunnel URL
  process // -> The ChildProcess object if applicable
});

See the ChildProcess documentation for more information about the process object.

Quick Start

Lets create the basic NodeJS HTTP server example and make it available to the web via Localtunnel:

var http = require('http');
var miner = require('miner');
var port = 1337;

http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(port, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

miner.localtunnel({
  port: port
}, function(error, url, process) {
  if(error) {
    console.log('ERROR', error);
    return;
  }
  console.log('Your server is now available to the world at:');
  console.log(url);
});

Just visit the url to see the server output.

Tunneling services

Default tunnel

The default tunnel is a dummy tunelling service that returns the URL for a given hostname and port. That way you can use the miner interface even when just connecting to a local server.

  • port - The port to share (default: none 80)
  • hostname - The hostname to use (default: localhost)
  • useOsHostname - Use the system hostname if set to true and hostname is not set
var miner = require('miner');
miner.local({
  port : 8080
}, function(error, url) {
  url // -> http://localhost:8080
});

Localtunnel

Localtunnel allows you to easily share a web service on your local development machine without messing with DNS and firewall settings. The following options are available:

  • subdomain A string value requesting a specific subdomain on the proxy server. Note You may not actually receive this name depending on availablily.
  • local_host Proxy to this hostname instead of localhost. This will also cause the Host header to be re-written to this value in proxied requests.
var miner = require('miner');
miner.localtunnel({
  port : 8080
}, function(error, url, tunnel) {
  tunnel.close();
});

The tunnel instance returned to your callback emits the following events

event args description
error err fires when an error happens on the tunnel
close fires when the tunnel has closed

The `tunnel instance has the following methods

method args description
close close the tunnel

Browserstack

BrowserStack is a cross browser testing tool. You need a Browserstack account with API access and have to provide your private key to the miner service. Unlike other services it will not provide a publicly acessible URL but the given URL will be accessible on your BrowserStack instances. The configuration is almost identical with the BrowserStackTunnel module which is used internally, additionally you can pass simply a port to tunnel.

  • key - Your browserstack command line tunnel key
  • hosts - An array of hosts to tunnel
  • port - The port to share (default: 80)
  • osxBin - optionally override the default bin directory for the OSX binary
  • linux32Bin - optionally override the default bin directory for the Linux 32 bit binary
  • linux64Bin - optionally override the default bin directory for the Linux 64 bit binary
  • jarFile - on other platforms, optionally override the default path to the BrowserStackTunnel.jar file
  • tunnelIdentifier - optionally set the -tunnelIdentifier option
  • skipCheck - optionally set the -skipCheck option
  • `vtrue, optionally set the -v (verbose) option
  • proxyUser - optionally set the proxy user
  • proxyPass - optionally set the proxy password
  • proxyPort - optionally set the proxy port
  • proxyHost - optionally set the proxy host
var miner = require('miner');
miner.browserstack({
  port : 8080,
  key: '<your API key>'
}, function(error, url, tunnel) {
  tunnel.kill();
});

Pagekite

Pagekite is a reliable way to make localhost part of the Web. Sign up for the free one month trial here. To use the wrapper Pagekite needs to be installed and initialized with your user information. After that it can be initializedwith these optiosn:

  • name - Your pagekite username
  • domain - Your pagekite domain (default: .pagekite.me)
  • port - The port to share (default: 80)
  • timeout - The timeout (in ms) after which the process will be killed if it hasn't reported back a valid URL (default: 30000)
  • executable - The pagekite executable (default: pagekite.py)
var miner = require('miner');
miner.pagekite({
  name : 'myname',
  port : 8080
}, function(error, url, tunnel) {
  tunnel.kill();
});

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.