Node Manager Pm2

PHP

Plesk extension for managing PM2-powered Node.js applications with process control, monitoring, deployment automation, and seamless server integration.

Stars
16
Forks
2
Downloads
N/A
Open Issues
0
Files main

Repository Files

Loading file structure...
plib/scripts/pre-install.php
<?php
if (version_compare(PHP_VERSION, '7.2.0', '<')) {
    fwrite(STDERR, "Node Manager (PM2) requires PHP 7.2 or newer.\n");
    exit(1);
}

exit(0);