Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/michael34435/glbc-healthcheck-koa
- Owner: michael34435
- License: mit
- Created: 2018-12-21T09:18:52.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-21T22:56:06.000Z (about 6 years ago)
- Last Synced: 2024-11-07T21:17:10.812Z (2 months ago)
- Topics: gcbl, glbc, google, google-cloud, health-check, healthcheck, koa, node, nodejs
- Language: JavaScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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());
```