GithubHelp home page GithubHelp logo

tomas2d / pm2-master-process Goto Github PK

View Code? Open in Web Editor NEW
8.0 3.0 1.0 1.36 MB

Run specific functions only on your PM2 master process to prevent race conditions of parallel processes.

License: MIT License

TypeScript 100.00%
pm2 nodejs typescript pm2-master-process

pm2-master-process's Introduction

๐Ÿ’ป ๐ŸŒ pm2-master-process

When using PM2 (Process Manager) for managing your Node.js applications, you will probably later need to run specific tasks only on a single instance (process). This small library solves this problem and gives you simple API and method decorators that you can use. Does this library help you? Do not forget to give it a โญ๏ธ!

โญ๏ธ Features

  • Allow running specific tasks only on a single instance
  • Supports PM2 restarts and scaling
  • Decorators for easy use
  • Retrieves number of slaves

๐Ÿš€ Installation

First you need to install this package and related pm2 package.

yarn add pm2-master-process promise-based-task pm2
npm install pm2-master-process

Without any configuration, the environment variable which tells us the instance of the id is pm_id, which is automatically set by PM2.

๐Ÿค˜๐Ÿป Usage

Without custom configuration

import { isMasterInstance } from 'pm2-master-process'

if (await isMasterInstance()) {
  console.info(`I am master!`)
} else {
  console.info(`I am a slave.`)
}

With custom configuration

import { isMasterInstance, Pm2MasterProcessConfig } from 'pm2-master-process'

const config: Partial<Pm2MasterProcessConfig> = {
  instanceIdStatus: ['online', 'launching'], // 'online' | 'stopping' | 'stopped' | 'launching' | 'errored' | 'one-launch-status', default is ['online'] 
  logger: false,
}

if (await isMasterInstance(config)) {
  console.info(`I am master!`)
} else {
  console.info(`I am a slave.`)
}

Using decorators

import { MasterInstance, NotMasterInstance } from 'pm2-master-process';

class MyController {

  @Cron('0 0 0 * * *', {
    name: 'Validate FS',
  })
  @MasterInstance()
  runJob() {
    ...
  }

  @Cron('0 0 0 * * *', {
    name: 'Something else',
  })
  @NotMasterInstance()
  runDifferntJob() {
    ...
  }

}

โœจ Feature functions

Retrieve number of slaves

import { getSlavesCount } from 'pm2-master-process';

const slavesCount = await getSlavesCount()

Retrieve processes and not just instances

import { getInstances } from 'pm2-master-process';

const instances = await getInstances()

API

declare function getCurrentProcessId(): number | null;

declare function getProcesses({ instanceStatus }?: Pick<Pm2MasterProcessConfig, 'instanceStatus'>): Promise<ProcessDescription[]>;
declare function getProcessesIds(customConfig?: Partial<Pm2MasterProcessConfig>): Promise<number[]>;

declare function isMasterProcess(customConfig?: Partial<Pm2MasterProcessConfig>): Promise<boolean>;
declare function getMasterProcessId(customConfig?: Partial<Pm2MasterProcessConfig>): Promise<number | null>;

declare function getSlavesCount(customConfig?: Partial<Pm2MasterProcessConfig>): Promise<number>;

TODO

  • Add tests

pm2-master-process's People

Contributors

dependabot[bot] avatar tomas2d avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.