npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@belym.a.2105/sauce-connect-launcher

v1.2.0-git.201703300925

Published

A library to download and launch Sauce Connect.

Downloads

9

Readme

sauce-connect-launcher

Build Status Dependency Status

A library to download and launch Sauce Connect.

Installation

npm install sauce-connect-launcher

If you wish to also download Sauce Connect at this stage, rather than on first run, use the SAUCE_CONNECT_DOWNLOAD_ON_INSTALL environment variable.

SAUCE_CONNECT_DOWNLOAD_ON_INSTALL=true npm install

Usage

Simple Usage

var sauceConnectLauncher = require('sauce-connect-launcher');

sauceConnectLauncher({
  username: 'bermi',
  accessKey: '12345678-1234-1234-1234-1234567890ab'
}, function (err, sauceConnectProcess) {
  if (err) {
    console.error(err.message);
    return;
  }
  console.log("Sauce Connect ready");

  sauceConnectProcess.close(function () {
    console.log("Closed Sauce Connect process");
  })
});

Advanced Usage


var sauceConnectLauncher = require('sauce-connect-launcher'),
  options = {

    // Sauce Labs username.  You can also pass this through the
    // SAUCE_USERNAME environment variable
    username: 'bermi',

    // Sauce Labs access key.  You can also pass this through the
    // SAUCE_ACCESS_KEY environment variable
    accessKey: '12345678-1234-1234-1234-1234567890ab',

    // Log output from the `sc` process to stdout?
    verbose: false,

    // Enable verbose debugging (optional)
    verboseDebugging: false,

    // Together with verbose debugging will output HTTP headers as well (optional)
    vv: false,

    // Port on which Sauce Connect's Selenium relay will listen for
    // requests. Default 4445. (optional)
    port: null,

    // Proxy host and port that Sauce Connect should use to connect to
    // the Sauce Labs cloud. e.g. "localhost:1234" (optional)
    proxy: null,

    // Change sauce connect logfile location (optional)
    logfile: null,

    // Period to log statistics about HTTP traffic in seconds (optional)
    logStats: null,

    // Maximum size before which the logfile is rotated (optional)
    maxLogsize: null,

    // Set to true to perform checks to detect possible misconfiguration or problems (optional)
    doctor: null,

    // Identity the tunnel for concurrent tunnels (optional)
    tunnelIdentifier: null,

    // an array or comma-separated list of regexes whose matches
    // will not go through the tunnel. (optional)
    fastFailRegexps: null,

    // an array or comma-separated list of domains that will not go
    // through the tunnel. (optional)
    directDomains: null,

    // A function to optionally write sauce-connect-launcher log messages.
    // e.g. `console.log`.  (optional)
    logger: function (message) {},

    // an optional suffix to be appended to the `readyFile` name.
    // useful when running multiple tunnels on the same machine,
    // such as in a continuous integration environment. (optional)
    readyFileId: null,

    // retry to establish a tunnel multiple times. (optional)
    connectRetries: 0

    // time to wait between connection retries in ms. (optional)
    connectRetryTimeout: 2000

    // retry to download the sauce connect archive multiple times. (optional)
    downloadRetries: 0

    // time to wait between download retries in ms. (optional)
    downloadRetryTimeout: 1000

    // path to a sauce connect executable (optional)
    // by default the latest sauce connect version is downloaded
    exe: null

    // keep sc running after the node process exited, this means you need to close
    // the process manually once you are done using the pidfile
    // Attention: This only works with sc versions <= 4.3.16 and only on macOS and
    // linux at the moment
    detached: null

    // specify a connect version instead of fetching the latest version, this currently
    // does not support checksum verification
    connectVersion: 'latest'
  };

sauceConnectLauncher(options, function (err, sauceConnectProcess) {
  console.log("Started Sauce Connect Process");
  sauceConnectProcess.close(function () {
    console.log("Closed Sauce Connect process");
  });
});

Additional Sauce Connect options not specified above can still be passed. additionalArg: "foo" options will be converted to --addtional-arg foo args (camelCase to kebab-case). Additional option starting with dash "-additionalArg": "foo" will be passed as it is -additionalArg foo. Arrays will be join()ed (like directDomains) and boolean options will be passed as flags. See Sauce Connect's docs for a full list of arguments.

Credentials

You can pass the Sauce Labs credentials as SAUCE_USERNAME and SAUCE_ACCESS_KEY environment variables. (reccommended)

You can also create a user.json file in your current working directory with the username and key

user.json

{"username": "bermi", "accessKey": "12345678-1234-1234-1234-1234567890ab"}

Sauce Connect Version

You can override the default Sauce Connect version with the SAUCE_CONNECT_VERSION environment variable.

$ SAUCE_CONNECT_VERSION=4.2 node myTestApp.js

Development

Clone the repository and run

make setup

You will be prompted for Sauce Labs credentials (used for testing). Run

make dev

to start the watcher.

Testing

npm test

or

make test

Changelog

v1.2.0

  • Improved download error handling and configurable download retries (#114)
  • Catch errors starting with ERROR: from sc output (#108)

v1.1.1

  • Ensure sc dir is created before downloading the archive. (#107)

v1.1.0

  • Detached mode and configurable version as open. (#105)

v1.0.0

  • Remove support for Node 0.10 and 0.12. (#103)
  • Support for using a custom executable (#99)
  • Hide API key from logs (#97)
  • Configurable connection retries (#101)
  • Various fixes for the Windows (#68, #95, #98)
  • Unwatch ready file on close (#67)
  • Auto-fetch the latest sc version (#96)
  • Support vv option (#93)

v0.15.1

  • Add http/s proxy support for download. (#80, #83)

v0.14.0

  • Support older versions of tar with xzf flag
  • SauceConnect 4.3.16

v0.13.0

  • Sauce Connect version 4.3.11
  • Bug-fix: Correctly catch api errors and log a message

v0.12.0

  • Sauce Connect version 4.3.10
  • Updated dependencies

v0.11.0

  • Updating dependencies
  • Catching connection errors (#54)

v0.10.3

  • Handle another error log output (#35)

v0.10.2

  • Bumping default Sauce Connect version to 4.3.7 (#51)

v0.10.1

  • Fixed file omitted by gitignore

v0.10.0

  • Refactored options handling to allow for future Sauce Connect options

v0.9.3

  • Disabling troublesome download on install unless the SAUCE_CONNECT_DOWNLOAD_ON_INSTALL=true env flag is used

v0.9.2

  • Handling errors reported as JSON (#43)

v0.9.1

  • Downloading on install only when installing globally or the SAUCE_CONNECT_DOWNLOAD_ON_INSTALL=true environment variable is set (#42) Either way, a failure on npm postinstall will not halt the installation as lazy installation can still be performed.

v0.9.0

  • Bumping default Sauce Connect version to 4.3.5

v0.8.2

  • Removing linux binaries published by mistake

v0.8.1

  • Changed prepublish script to postinstall(#38)

v0.8.0

  • Add readyFile suffix option (#39/#41)

v0.7.1

  • Changed install script to prepublish (#37/#38)

v0.7.0

  • Downloading sc during "npm install" (#36)
  • Adding --verboseDebugging for passing the --verbose flag to sc (#33)

v0.6.0

  • Exposing more logging options (#32)

v0.5.2

  • Use Sauce Connect v4.3 by default (#31)

v0.5.1

  • Set execute bit after download (#29)

v0.5.0

  • Use Sauce Connect v4.2 by default
  • Allow run-time overriding of Sauce Connect Version (#25)
  • Always set and check execute permissions (#27)

v0.4.2

  • Obfuscate credentials in logger output (#23)

v0.4.1

  • Remove Mac binaries added by mistake

v0.4.0

  • Use Sauce Connect v4.1 with Heartbleed fixes (#22)

v0.3.3

  • Support node 0.8.x (#20)

v0.3.2

  • Properly execute permissions on Windows (#19)

v0.3.1

  • Set execute permissions after downloading (#17)

v0.3.0

  • Support Sauce Connect 4.0
  • Use os.tmpdir() for readyfile

License

(The MIT License)

Copyright (c) 2013 Bermi Ferrer <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.