@uphold/process-manager

A module for handling the lifecycle of a node process

Usage no npm install needed!

<script type="module">
  import upholdProcessManager from 'https://cdn.skypack.dev/@uphold/process-manager';
</script>

README

process-manager

A node.js process manager. This package handles a process's lifecycle, from running to exiting, by handling errors and exceptions, as well as graceful shutdowns.

Status

npm version build status

Installation

Install the package via yarn:

❯ yarn add '@uphold/process-manager'

Or npm:

❯ npm install '@uphold/process-manager' --save

Usage

To use process-manager simply require it in your project.

const processManager = require('process-manager');

// async/await
processManager.once(async () => {
  await foo.bar();
});

// Promise
processManager.once(() => new Promise((resolve, reject) => {
  foo.bar(err => {
    if (err) return reject();

    return resolve();
  });
}));

And it will now manage your node process.

loop(fn, [options])

This lifecycle is used to loop over a given function.

Arguments

  • fn (Function): the function to run.
  • [options] (object): the options object.
  • [options.interval=0] (integer): how long to wait (in miliseconds) before restarting the function.

Example

const processManager = require('process-manager');

processManager.loop(async () => {
  console.log(await client.getSomeInfo());
}, { interval: 600 });

on(fn)

This lifecycle is used to get a function suited for using with an event emitter. It does not exit unless something goes wrong.

Arguments

  • fn (Function): the function to run.

Example

const processManager = require('process-manager');

async function handler(value) {
  console.log(await client.getInfo(value));
}

client.on('event', processManager.on(handler));

once(fn)

This lifecycle is used to a given function and exit.

Arguments

  • fn (Function): the function to run.

Example

const processManager = require('process-manager');

processManager.once(async () => {
  await client.doWork();
});

shutdown([args])

This function can be called to trigger a process shutdown. If passed an error as an optional argument, it will save it to the errors array. This function will only start the shutdown process once, any extra calls will be ignored, although it will still save the error if one is passed.

If called with { force: true } it will skip waiting for running processes and immediately start disconnecting.

Arguments

  • [args] (object): the arguments object.
  • [args.error] (Error): an error to add to the errors array.
  • [args.force] (Boolean): a boolean that forces the shutdown to skip waiting for running processes.

Example

const processManager = require('process-manager');

processManager.shutdown({ error: new Error('Error') });

Hooks

Currently there are three hooks that can be used to call external code during the shutdown process. If a hook takes longer than 30 seconds to return, it will timeout and continue with the shutdown process.

drain

This hook is called during shutdown, after all running processes have stopped. It should be used to drain connections if the process is running a server.

disconnect

This hook is called after drain and it's where handlers should be added to close running services (ex.: database connections, persistent connections, etc).

exit

This hook is called right before the process exits. It passes an array of errors as an argument to the handler function, and should be used to handle errors before exiting.

addHook({ handler, type, [name='a handler'] })

This function is used to add a hook for one of the types described above.

Arguments

  • args.handler (Function): a function that returns a value or a thenable.
  • args.type (string): the hook type.
  • [args.name='a handler'] (string): identifies the hook.
const processManager = require('process-manager');

processManager.addHook({ handler: () => 'result', type: <hook-type> });
processManager.addHook({ handler: () => Promise.resolve('result'), type: <hook-type> });

Integrations

sentry.io

The recommended way to report errors to sentry is by adding an exit hook and sending each error using a promisified captureException.

const Promise = require('bluebird');
const raven = Promise.promisifyAll(require('raven'));

raven.config('https://******@sentry.io/<appId>').install();

processManager.addHook({
  handler: errors => Promise.map(errors, error => raven.captureExceptionAsync(error)),
  name: 'sentry',
  type: 'exit'
});

Debug

Enable verbose debugging by setting the DEBUG environment variable to DEBUG=process-manager.

Release

❯ npm version [<new version> | major | minor | patch] -m "Release %s"`

Test

To test using a local version of node, run:

❯ yarn test

License

MIT