1.1.0 • Published 1 year ago

pm2-process-events v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

pm2-process-events

Emits all process events from pm2 unix socket

This packages is used to asyncronously emit all pm2 process events.

Installation

npm i --save pm2-process-events
# OR
yarn add pm2-process-events

Usage

import Pm2ProcessEvents from 'pm2-process-events';

const pm2Events = new Pm2ProcessEvents(
  // pm2.sock location, defaults to:
  `${process.env.HOME}/.pm2/pub.sock`
);

pm2Events.on('*', ({ namespace, payload }) => {
  console.log(namespace, payload);
});

You can filter events using wildcards matching, eg: log:*

// data format
{
  event: string;
  payload: any;
}

Options

Contributing

Project is pretty simple and straight forward for what is my needs, but if you have any idea you're welcome.

This projects uses commitlint with Angular configuration so be sure to use standard commit format or PR won't be accepted.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'feat(scope): some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Contact

Simone Corsi - @im_simonecorsi