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-actuator

v1.8.4

Published

Provides endpoints to help you monitor and manage your application when it's pushed to production.

Downloads

72,416

Readme

Express Actuator

npm version Build Status Coverage Status Known Vulnerabilities Libraries.io dependency status for latest release npm

This middleware creates a series of endpoints to help you monitor and manage your application when it's pushed to production. It's useful when you run your application on kubernetes and you are in need of endpoints for readiness/liveness probe.

It is based on Spring Boot Actuator and the healthcheck-ping module by Mathias Schreck.

Table of Contents

Endpoints

ID | Description --- | --- info | Displays application information. metrics | Shows metrics information for the current application. health | Shows application health information.

Installation

$ npm install --save express-actuator

Typescript

$ npm install --save-dev @types/express-actuator

Usage

const actuator = require('express-actuator');
const app = express();

app.use(actuator());

Configuring Actuator

All defined options are optional:

const options = {
    basePath: '/management', // It will set /management/info instead of /info
    infoGitMode: 'simple', // the amount of git information you want to expose, 'simple' or 'full',
    infoBuildOptions: null, // extra information you want to expose in the build object. Requires an object.
    infoDateFormat: null, // by default, git.commit.time will show as is defined in git.properties. If infoDateFormat is defined, moment will format git.commit.time. See https://momentjs.com/docs/#/displaying/format/.
    customEndpoints: [] // array of custom endpoints
};

app.use(actuator(options));

Custom Endpoints

You can add your own validations using the customEndpoints option:

const options = {
    customEndpoints: [
        {
            id: 'dependencies', // used as endpoint /dependencies or ${basePath}/dependencies
            controller: (req, res) => { // Controller to be called when accessing this endpoint
                // Your custom code here
            }
        }
    ]
};

app.use(actuator(options));

IMPORTANT:

  1. If you call your custom endpoint info it WILL override the default info.
  2. If you provide basePath, your id will be available as ${basePath}/${id}, otherwise, just /${id}.
  3. Consider lightweight code being processed by your endpoint controller or it will compete with your main application.

Deprecated mode

To have backward compatibility with previous versions (<= 1.2.0) the legacy way is still available:

app.use(actuator('/management')); // It will set /management/info instead of /info

IMPORTANT: Deprecated mode will be removed in the next major version.

Endpoints Examples

info

{
    "build": {
        "description": "This is my new app",
        "name": "MyApp",
        "version": "1.0.0"
    },
    "git": {
        "branch": "master",
        "commit": {
            "id": "329a314",
            "time": "2016-11-18 08:16:39-0500"
        }
    }
}

IMPORTANT: To get this information the middleware have some sort of logic:

  1. When the express app is executed with node app.js or npm start the module will look for a file named package.json where the node command was launched.
  2. Git information will show only if exists a git.properties file where the app was launched. You can use node-git-info to generate this file.

metrics

{
    "mem": {
        "heapTotal": 14659584,
        "heapUsed": 10615072,
        "rss": 30093312
    },
    "uptime": 19.797
}

health

{
  "status": "UP"
}

Application Information

Git Commit Information

The info endpoint has a feature to publish information about your git source code repository. If a git.properties file is available on your project path, the git.branch, git.commit.id, and git.commit.time properties are exposed.

TIP: You can use node-git-info to generate git.properties file on your project.

If you want to display the full git information (that is, the full content of git.properties), use the infoGitMode property, as follows:

const options = {
    infoGitMode: 'full'
};

app.use(actuator(options));

Contributing

Third-party contributions are welcome! 🙏🏼 See CONTRIBUTING.md for step-by-step instructions.

If you need help or have a question, let me know via a GitHub issue.