Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

loadmill

Package Overview
Dependencies
Maintainers
1
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

loadmill - npm Package Compare versions

Comparing version 0.0.15-dev to 0.0.16-dev

7

lib/loadmill.js

@@ -6,7 +6,8 @@ "use strict";

.usage("<config-file> -t <token> [options] [parameter=value...]")
.description("Launch a load test or run a functional test on loadmill.com. " +
"You may assign parameter values by passing arguments such as 'loadmill test.json host=www.myapp.com port=80'.")
.description("Run a load test or a functional test on loadmill.com.\n " +
"You may set parameter values by passing space-separated 'name=value' pairs, e.g. 'host=www.myapp.com port=80'.\n\n " +
"Learn more at https://www.npmjs.com/package/loadmill#cli")
.option("-t, --token <token>", "Loadmill API Token. You must provide a token in order to run tests.")
.option("-l, --load-test", "Launch a load test. If not set, a functional test will run instead.")
.option("-w, --wait", "Wait for the load test to finish.")
.option("-w, --wait", "Wait for the load test to finish. Functional tests are always waited on.")
.parse(process.argv);

@@ -13,0 +14,0 @@ var wait = program.wait, token = program.token, loadTest = program.loadTest, _a = program.args, file = _a[0], parameters = _a.slice(1);

{
"name": "loadmill",
"version": "0.0.15-dev",
"version": "0.0.16-dev",
"description": "A node.js module for running load tests and functional tests on loadmill.com",

@@ -5,0 +5,0 @@ "keywords": [

@@ -5,7 +5,10 @@ import * as program from 'commander';

.usage("<config-file> -t <token> [options] [parameter=value...]")
.description("Launch a load test or run a functional test on loadmill.com. " +
"You may assign parameter values by passing arguments such as 'loadmill test.json host=www.myapp.com port=80'.")
.description(
"Run a load test or a functional test on loadmill.com.\n " +
"You may set parameter values by passing space-separated 'name=value' pairs, e.g. 'host=www.myapp.com port=80'.\n\n " +
"Learn more at https://www.npmjs.com/package/loadmill#cli"
)
.option("-t, --token <token>", "Loadmill API Token. You must provide a token in order to run tests.")
.option("-l, --load-test", "Launch a load test. If not set, a functional test will run instead.")
.option("-w, --wait", "Wait for the load test to finish.")
.option("-w, --wait", "Wait for the load test to finish. Functional tests are always waited on.")
.parse(process.argv);

@@ -12,0 +15,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc