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

express-loadmill

v0.1.7

Published

Express middleware to enable crowdsourced load simulations via loadmill.com

Downloads

39

Readme

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