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-under-pressure

v0.3.2

Published

Express Under Pressure

Downloads

336

Readme

ExpressJS Under Pressure Downloads npm version

Monitor your server's health and automatically respond with a "Server Under Pressure" message when certain thresholds are exceeded. This is useful for maintaining server stability under heavy load.

This is an Express JS alternative for @fastify/under-pressure. I will try to add all APIs provided in the fastify plugin in this.

Note: This package is heavily inspired from @fastify/under-pressure. Shoutout to the maintainers and collaborators of the project.

Features

  • Monitors event loop delay
  • Monitors heap memory usage
  • Monitors event loop utilization
  • Monitors resident set size (RSS) memory usage
  • Configurable thresholds for all metrics
  • Customizable response message

Installation

You can install the package using npm:

npm install express-under-pressure

or using yarn:

yarn add express-under-pressure

Usage

Here's a detailed example of how to use the underPressure in an Express application.

Import

First, import the necessary modules in your TypeScript file:

import express from 'express';
import { underPressure } from 'express-under-pressure';

Register the middleware

Next, create an instance of the middleware with your desired options:

const app = express();

underPressure(app, {
  maxEventLoopDelay: 1000, // Maximum event loop delay in milliseconds
  maxHeapUsedBytes: 200 * 1024 * 1024, // Maximum heap used in bytes
  maxRssBytes: 300 * 1024 * 1024, // Maximum RSS memory used in bytes
  maxEventLoopUtilization: 0.98 // Maximum event loop utilisation
  message: 'Server Under Pressure', // Custom response message
});

app.get('/', (req, res) => {
  if (res.locals.isUnderPressure()) {
    // Avoind heavy computations here
  }
  res.send('Hello World!');
});

app.listen(3000, () => {
  console.log('Server is running on port 3000');
});

Middleware Options

The underPressure function takes express app instance and an options object with the following properties:

  • maxEventLoopDelay (number): The maximum event loop delay in milliseconds.
  • maxHeapUsedBytes (number): The maximum heap memory usage in bytes.
  • maxRssBytes (number): The maximum RSS memory usage in bytes.
  • maxEventLoopUtilization (number): The maximum event loop utilisation.
  • message (string): Optional. The message to send when the server is under pressure.
  • retryAfter (number): Optional. The value for Retry-After header..

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.

License

This project is licensed under the MIT License. See the LICENSE file for details.


Feel free to reach out if you have any questions or need further assistance.

Happy coding!