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

@rbbn/werkout-startup

v1.0.2

Published

## Description

Downloads

419

Readme

Werkout-Startup

Description

Werkout-Startup is a command-line utility for launching Werkout partners in preparation for a test run. This will start an HTTP server to serve your partner application and launch Chrome and/or Firefox browsers to load the partner app using Selenium. You must provide the script a command to run once the partners are launched. This is intended to be the command to start your tests.

Installation

Latest version:

npm install @rbbn/werkout-startup --save-dev

Usage

Werkout-startup is used on the command line.

werkout-startup -d ./dist/ -a http://172.28.225.198:4444/wd/hub -c config.json -- karma start

Arguments

| Options | Alias | Description | Type | Required | Default | | ----------- | ----- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- | -------- | ------- | | --version | | Show version number | boolean | No | N/A | | --directory | -d | The directory to serve content from over HTTP | string | Yes | N/A | | --addr | -a | The address of the Selenium hub | string | Yes | N/A | | --config | -c | A JavaScript configuration file providing an Array of browser configuration objects. For each object, Selenium will attempt to create a Partner and launch the appropriate browser as specified in the object. | string | Yes | N/A | | --key | -k | The path to the key for SSL. Must provide --cert as well. Using these options will cause the server to only accept secure connections. | string | No | N/A | | --cert | -t | The path to the certificate for SSL. Must provide --key as well. Using these options will cause the server to only accept secure connections. | string | No | N/A | | --https | | Defaults to true when cert and key are provided. You may want use --https without providing a cert and key. This is so you can start an http server but point browsers to https if you've setup a proxy that adds SSL between the server and the browser. | boolean | No | false | | --help | -h | Show help | boolean | No | N/A | | --logsDir | | The directory that Partner logs should be saved to after a test case. | string | | No | | N/A |