ExpressJS actuator middleware for Cloud Foundry Applications
ExpressJS actuator middleware for NodeJS Cloud Foundry Applications.
Currently provides health and info endpoints for Cloud Foundry Apps Manager. These two and future Endpoints are restricted to users that
Use Cloud Foundry Actuator CLI to generate a build info file ahead of deployment time. This file is optional, but we can’t show version infos without it.
Health status will be shown automatically and will be costumizable in the future.
See Express Cloud Foundry Actuator Middleware Example for an example application with full integration of Cloud Foundry Actuator CLI and Express Cloud Foundry Actuator Middleware.
npm install express-cloudfoundry-actuator-middleware --save
'use strict'
const express = require('express')
const app = express()
const actuator = require('express-cloudfoundry-actuator-middleware')
// ...
app.use(actuator())
// ...
This project is distributed under the MIT license.