2.0.1 • Published 7 years ago

@akitabox/aws_health_check v2.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

AWS Health Check

Express middleware for responding to AWS health check requests from Route53 and ELB

Installation

npm install @akitabox/aws_health_check --save

Usage

Configure application health check requests in Route53 and ELB to ping HTTP:3000/heartbeat

Example app.js

var express = require('express');
var awsHealthCheck = require('@akitabox/aws_health_check');
var app = express();

// Respond to health check requests sent to this application
app.use(awsHealthCheck());

app.listen(3000, function () {
  console.log('Simple app listening on port 3000!');
});
2.0.1

7 years ago

2.0.0

7 years ago

1.0.7

8 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago