I often can't remember what commands to list and terminate processes on my computer.Meet Port34, a terminal-based user interface (TUI) designed to help you visualize and manage processes directly from your terminal.
- Go (version 1.23 or higher)
- Make (for executing the Makefile commands)
The Makefile provides several commands to build, run, and manage the application.
To compile the Go code into a binary:
make build
This will create an executable named port-monitor in the project directory.
To build and then run the application directly:
# production
make run
# development
make run-dev