https://github.com/radovskyb/process
process is a simple Go package for working with unix processes.
https://github.com/radovskyb/process
Last synced: about 1 year ago
JSON representation
process is a simple Go package for working with unix processes.
- Host: GitHub
- URL: https://github.com/radovskyb/process
- Owner: radovskyb
- Created: 2016-09-11T14:37:02.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-05-15T08:28:47.000Z (about 8 years ago)
- Last Synced: 2025-04-01T14:46:10.674Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 17
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# process
process is a simple Go package for working with unix processes.
For an example into what process is capable of doing, check out gobeat: https://github.com/radovskyb/gobeat.
# Features
- Find a process by `PID`.
- Find a process by name.
- Health check a process.
- Start a new process.
- Start a new process in a specified `tty`.
- Other small features plus more to come...
# Todo
- Add `Kill` method.
- Add `Restart` method.
- Write more tests.