New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@nodeboot/starter-actuator

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nodeboot/starter-actuator

The first typescript example for the Monorepo example

latest
Source
npmnpm
Version
1.7.7
Version published
Maintainers
1
Created
Source

🔍 @nodeboot/starter-actuator – Node-Boot Actuator Starter

npm version License: MIT

Node-Boot Actuator Starter provides production-ready monitoring, health checks, and application insights for Node-Boot applications, following Spring Boot Actuator patterns for the Node.js ecosystem.

Overview

The Node-Boot Actuator Starter brings comprehensive application monitoring and observability to your Node.js applications. It automatically exposes operational endpoints for health checks, metrics collection, application information, and more. This starter is the Node.js equivalent of Spring Boot Actuator, providing the same level of production-ready monitoring capabilities.

Key Features

Auto-Configuration – Zero-configuration setup with sensible defaults
Health Checks – Built-in health endpoints with custom health indicators
Prometheus Metrics – Automatic metrics collection and exposure
Application Info – Git information, build details, and environment data
Multi-Framework Support – Works with Express, Fastify, Koa, and native HTTP
Production-Ready – Battle-tested monitoring patterns from Spring Boot

📦 Installation

Prerequisites

  • Node.js 18+
  • Node-Boot 2.0+
  • One of the supported servers: Express, Fastify, Koa, or native HTTP

Install the Starter

# pnpm (recommended)
pnpm add @nodeboot/starter-actuator

# npm
npm install @nodeboot/starter-actuator

# yarn
yarn add @nodeboot/starter-actuator

Auto-Configuration

This starter provides auto-configuration when added to your Node-Boot application. No additional setup required for basic usage.

⚡ Quick Start

1️⃣ Enable Actuator in Your Application

import {NodeBootApplication, NodeBoot, ExpressServer} from "@nodeboot/core";
import {EnableActuator} from "@nodeboot/starter-actuator";

@EnableActuator()
@NodeBootApplication()
export class Application {
    start(): Promise<NodeBootAppView> {
        return NodeBoot.run(ExpressServer);
    }
}

2️⃣ Basic Usage

Once enabled, the actuator automatically exposes monitoring endpoints:

3️⃣ Verify Setup

# Start your application
pnpm start

# Access the actuator endpoints:
# Health check
curl http://localhost:3000/actuator/health

# Application info
curl http://localhost:3000/actuator/info

# Prometheus metrics
curl http://localhost:3000/actuator/metrics

# Look for these log messages indicating successful setup:
# ✅ Actuator endpoints enabled
# ✅ Health checks registered
# ✅ Metrics collection started

TO BE CONTINUED...

Keywords

monorepo

FAQs

Package last updated on 20 Nov 2025

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