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

express-loadmill

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-loadmill

Express middleware to enable crowdsourced load simulations via loadmill.com

  • 0.1.7
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by60%
Maintainers
2
Weekly downloads
 
Created
Source

Express Loadmill

Users of Loadmill can use this express middleware for:

  1. Quick and easy domain verification.
  2. Enabling CORS strictly from loadmill.com in order to perform crowdsourced load tests.
  3. Sample performance metrics of the Node process to be viewed alongside client-side metrics during a load test.

Installation

Using npm:

npm install express-loadmill --save

Using yarn:

yarn add express-loadmill

Usage

Use loadmill middleware before everything else (that should be exposed to testing):

var app = require('express')();
var Loadmill = require('express-loadmill');

app.use(Loadmill({verifyToken: process.env.LOADMILL_VERIFY_TOKEN}));

The above code enables both CORS and domain verification. You may optionally disable CORS by setting the enableCors option to false, e.g.

app.use(Loadmill({enableCors: false, verifyToken: process.env.LOADMILL_VERIFY_TOKEN}));

Note however that you will not be able to perform high-volume load tests with loadmill without enabling CORS.

Domain verification will only be enabled if you supply a verification token, thus the following code will only enable CORS:

app.use(Loadmill());

Cookies

To enable cookies being sent to and from the server (by setting Access-Control-Allow-Credentials response header), set the enableCookies option to true, e.g.

app.use(Loadmill({enableCookies: true, verifyToken: process.env.LOADMILL_VERIFY_TOKEN}));

Note that you will also need to enable cookies for your test in the Advanced Settings section of your test configuration.

Monitoring

By enabling performance monitoring, samples of CPU and memory usage of the Node process will be sent to Loadmill (only during load testing) and will be displayed alongside client-side metrics in your performance metrics charts.

express-loadmill

The monitoring module is an optional dependency, therefore you must install it. Before installing, make sure you are using Node version v6.1.0 or higher.

Using npm:

npm install express-loadmill loadmill-monitor --save

Using yarn:

yarn add express-loadmill loadmill-monitor

To enable monitoring, you need to configure monitor options with a personal API token (note this is not the same as verifyToken):

app.use(Loadmill({
    verifyToken: process.env.LOADMILL_VERIFY_TOKEN,

    monitor: {
        // Required:
        apiToken: process.env.LOADMILL_API_TOKEN,

        // Default is TRUE:
        enabled: process.env.ENABLE_LOADMILL_MONITORING
    }
}));

Learn More

Keywords

FAQs

Package last updated on 02 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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