Crates.io | pmc |
lib.rs | pmc |
version | 2.0.0 |
source | src |
created_at | 2023-11-16 08:32:19.040893 |
updated_at | 2024-07-25 04:26:39.172834 |
description | PMC is a simple and easy to use PM2 alternative |
homepage | |
repository | https://lab.themackabu.dev/self/pmc |
max_upload_size | |
id | 1037401 |
size | 2,063,298 |
PMC (Process Management Controller) is a simple PM2 alternative written in Rust. It provides a command-line/api interface to start, stop, restart, and manage fork processes
# Start/Restart a process
pmc start <id/name> or <script> [--name <name>]
# Stop/Kill a process
pmc stop <id/name>
# Remove a process
pmc remove <id/name>
# Get process info
pmc info <id/name>
# Get process env
pmc env <id/name>
# Save all processes to dumpfile
pmc save
# Restore all processes
pmc restore
# List all processes
pmc list [--format <raw|json|default>]
# Get process logs
pmc logs <id/name> [--lines <num_lines>]
# Reset process index
pmc daemon reset
# Stop daemon
pmc daemon stop
# Start/Restart daemon
pmc daemon start
# Check daemon health
pmc daemon health
# Add new Ssrver
pmc server new
# List servers
pmc server list [--format <format>]
# Remove server
pmc server remove <name>
# Set default server
pmc server default [<name>]
For more command information, check out pmc --help
Pre-built binaries for Linux, MacOS, and WSL can be found on the releases page.
There is no windows support yet. Install from crates.io using cargo install pmc
(requires clang++)
cargo
cargo build --release
/bin/
or /usr/bin/