ps_list 0.0.3
ps_list: ^0.0.3 copied to clipboard
A Dart package that allows you to retrieve a list of running processes and check whether a specific process is running on Linux, macOS, and Windows.
example/example.dart
import 'package:ps_list/ps_list.dart';
Future<void> main(List<String> args) async {
final ps = await PSList.getRunningProcesses();
print(ps);
}