koa-ok

1.0.0 • Public • Published

koa-ok

NPM version build status

Koa middleware providing a health check ping route that always returns a 200 OK response.

Install

npm install --save koa-ok

API

ok(String path)

Returns an async function that plugs into a Koa middleware stack.

The path argument accepts a String that defines the URL path to match on. This must include a leading / character (eg: /ping, /_health).

Any requests matching the path will return a text/plain response with the body set to OK. This will also halt further processing of the middleware chain.

Usage

const koa = require('koa')
const ok = require('koa-ok')
 
const app = new koa()
 
app.use(ok('/ping'))
 
app.listen(3000)

License

Copyright 2018 Digivizer Pty Ltd.

This project is open source under the terms of the ISC license. See the LICENSE file included with this software distribution for more information.

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i koa-ok

    Weekly Downloads

    9

    Version

    1.0.0

    License

    ISC

    Unpacked Size

    2.99 kB

    Total Files

    6

    Last publish

    Collaborators

    • maetl