0.4.15 • Published 6 years ago

node-app-base v0.4.15

Weekly downloads
17
License
ISC
Repository
-
Last release
6 years ago

node-app-base

Build Status NPM version

Basic utilities for running node microservices

How to use

Require the base library and call it as a function, passing in your application name. The application name will be used to configure the various internal modules of the base, and must be alphanumeric with underscores only.

When instantiated, the base returns an object holding its modules, and it is recommended that you dereference these for use:

const base = require('node-app-base')('example')
const { config, logger, metrics, timers, slack, healthCheck } = base

The base library is a singleton, so you can either pass it around through your application or simply call it again passing in the same application name.

See included example application for further details.

API examples

config

Provides access to safely read environment variables.

config.set({
    foo: {
        type: 'integer',
        default: 5
    },
    bar: {
        type: 'string',
        required: true
    }
})

// if foo is not overridden by an environment variable
config.get('foo') // returns 5

// if bar is a defined environment variable
config.get('bar') // returns bar, cast to a string

// if bar is not a defined an environment variable
config.get('bar') // throws error

Available values for the type parameter:

  • string
  • int, integer, number
  • float
  • bool, boolean

logger

Provides basic logging functions. The first argument should always be an alphanumeric key (dots and dashes are also allowed), and the optional second argument is a JSON object that is intended to provide context to the log line.

Note that there is intentionally no debug function, as we do not want to encourage divergence between the development and production environment.

logger.info('request.start', { path: url })

logger.warn('db.username.update.fail', { userId: id, time: timeNow })

logger.error('fatal', { message: err.toString() })

metrics

Provides an Prometheys-style instrumentation interface listening on port 9091 as standard. The module can be used to add additional metrics to the interface.

The operations below are all upserts, so they will create the metric for the first time if it does not already exist. This means that new metrics may appear in the instrumentation interface when new code paths have been hit.

See the npm prom-client module for further details.

metrics.counter({
    name: 'request_count',
    help: 'Total incoming HTTP requests',
    labels: {
        statusCode: statusCode
    }
})

metrics.gauge({
    name: 'random_value',
    help: 'Some random value set on each request',
    value: Math.floor(Math.random() * 1000)
})

metrics.histogram({
    name: 'response_time_milliseconds',
    help: 'Response time duration distribution',
    buckets: [ 10, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000 ],
    value: responseTimeMs,
    labels: {
        uri: uri
    }
})

metrics.summary({
    name: 'response_time_percentile',
    help: 'Response time percentile distribution',
    percentiles: [ 0.01, 0.1, 0.9, 0.99 ],
    value: responseTimeMs
})

timers

Provides high-resolution timers. Useful to use with logging.

const startToken = timers.start()

// do work

const duration = timers.stop(startToken)

console.log(duration) // an integer of the milliseconds elapsed since start was called.

slack

Allows the application to send messages to Slack.

This module relies on the following environment variables having been configured:

SLACK_URL: required, the webhook URL for slack
SLACK_CHANNEL: required: the channel or user at which to send messages
SLACK_USERNAME: optional, the username messages appear to have come from. Uses to the base app-name is not defined
SLACK_EMOJI: optional: the emoji icon for the slack user.
// if the required environment variables are defined
slack.postMessage('hello slack', (err) => {
    // err is undefined
})

// if the required environment variables are not defined
slack.postMessage('hello slack', (err) => {
    console.log(err.toString())
    // err is an Error object containing a message as to what was not defined.
})

Health Check

Set up an HTTP endpoint to monitor application health. Returns 200 if health and 500 if not healthy.

The module can be configured as follows:

HEALTHCHECK_HTTP_LISTEN_PORT: optional, the listen port for the endpoint. Defaults to 8999
// Basic listener
healthCheck.initListener();
// Advanced listener using promise
function isAppHealthy() {
    return new Promise((resolve, reject) => {
        const isDatabaseOk = checkDatabaseConnectivityOk();
        const isCacheOk = checkCacheConnectivityOk();

        if (isDatabaseOk && isCacheOk) {
            return resolve();
        }
        return reject();
    });
}

healthCheck.initListener(isAppHealthy);
0.4.15

6 years ago

0.4.12

6 years ago

0.4.11

6 years ago

0.4.10

6 years ago

0.4.9

7 years ago

0.4.8

7 years ago

0.4.7

7 years ago

0.4.6

7 years ago

0.4.5

7 years ago

0.4.4

7 years ago

0.4.3

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.3

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago