Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/michael34435/glbc-healthcheck-koa

Handle GLBC health check in Koa.js, it will return `{"status": "ok"}` when GLBC check your service.
https://github.com/michael34435/glbc-healthcheck-koa

gcbl glbc google google-cloud health-check healthcheck koa node nodejs

Last synced: about 2 months ago
JSON representation

Handle GLBC health check in Koa.js, it will return `{"status": "ok"}` when GLBC check your service.

Awesome Lists containing this project

README

        

glbc-healthcheck-koa
---
This module will help you to bypass `Google Load Balancer`(GLBC) with a middleware.

## Install
```bash
npm install glbc-healthcheck-koa --save
```

## Usage
```JavaScript
const Koa = require('koa');
const app = new Koa();
const healthcheck = require('glbc-healthcheck-koa');

app.use(healthcheck());
```