{"id":32281482,"url":"https://github.com/shakthizen/ps_list","last_synced_at":"2026-05-18T14:41:16.264Z","repository":{"id":246793017,"uuid":"823330847","full_name":"shakthizen/ps_list","owner":"shakthizen","description":"Dart package for getting list of running processes","archived":false,"fork":false,"pushed_at":"2025-03-04T20:50:58.000Z","size":35,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T00:57:43.609Z","etag":null,"topics":["dart","dart-package","flutter","processes"],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/ps_list","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/shakthizen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-07-02T20:44:25.000Z","updated_at":"2025-03-04T20:51:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"67785a21-0b87-4926-b288-ab0fd6975938","html_url":"https://github.com/shakthizen/ps_list","commit_stats":null,"previous_names":["shakthizen/ps_list","pearkoder/ps_list"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/shakthizen/ps_list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shakthizen%2Fps_list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shakthizen%2Fps_list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shakthizen%2Fps_list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shakthizen%2Fps_list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shakthizen","download_url":"https://codeload.github.com/shakthizen/ps_list/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shakthizen%2Fps_list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280540658,"owners_count":26347724,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-22T02:00:06.515Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dart","dart-package","flutter","processes"],"created_at":"2025-10-23T00:57:42.604Z","updated_at":"2025-10-23T00:57:53.254Z","avatar_url":"https://github.com/shakthizen.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![.github/workflows/contributions.yml](https://github.com/pearkoder/ps_list/actions/workflows/contributions.yml/badge.svg)](https://github.com/pearkoder/ps_list/actions/workflows/contributions.yml)\n___\n# PSList Dart Package\n\nA 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.\n\n## Features\n\n- Retrieve a list of currently running processes.\n- Check whether a specific process is currently running.\n- Cross-platform support for Linux, macOS, and Windows.\n\n## Installation\n\nIn your `pubspec.yaml` file, add the following dependency:\n\n```yaml\ndependencies:\n  ps_list: ^0.0.2  # Replace with the latest version\n```\n\nThen, run:\n\n```bash\n$ dart pub get\n```\n\n## Usage\n\n```dart\nimport 'package:ps_list/ps_list.dart';\n\nvoid main() async {\n  // Retrieve a list of all running processes\n  List\u003cString\u003e processes = await PSList.getRunningProcesses();\n\n  // Print process details\n  for (var process in processes) {\n    print('Process: $process');\n  }\n\n  // Check if a specific process is running\n  String processName = 'my_process';\n  bool isRunning = await PSList.isProcessRunning(processName);\n\n  if (isRunning) {\n    print('$processName is running.');\n  } else {\n    print('$processName is not running.');\n  }\n}\n```\n\n## API\n\n### `Future\u003cList\u003cString\u003e\u003e getRunningProcesses()`\n\nReturns a list of strings representing the names of currently running processes.\n\n### `Future\u003cbool\u003e isProcessRunning(String processName)`\n\nChecks if a process with the specified `processName` is currently running.\n\n- Returns `true` if the process is running.\n- Returns `false` if the process is not running.\n\n## Compatibility\n\nThis package is compatible with Dart 2.12.0 or higher.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a pull request.\n\nThanks to the following people for their contributions:\n\n\u003c!-- readme: contributors -start --\u003e\n\u003ctable\u003e\n\t\u003ctbody\u003e\n\t\t\u003ctr\u003e\n            \u003ctd align=\"center\"\u003e\n                \u003ca href=\"https://github.com/shakthizen\"\u003e\n                    \u003cimg src=\"https://avatars.githubusercontent.com/u/33683648?v=4\" width=\"100;\" alt=\"shakthizen\"/\u003e\n                    \u003cbr /\u003e\n                    \u003csub\u003e\u003cb\u003eShakthi Senavirathna\u003c/b\u003e\u003c/sub\u003e\n                \u003c/a\u003e\n            \u003c/td\u003e\n            \u003ctd align=\"center\"\u003e\n                \u003ca href=\"https://github.com/r3sbarra\"\u003e\n                    \u003cimg src=\"https://avatars.githubusercontent.com/u/25109979?v=4\" width=\"100;\" alt=\"r3sbarra\"/\u003e\n                    \u003cbr /\u003e\n                    \u003csub\u003e\u003cb\u003er3sbarra\u003c/b\u003e\u003c/sub\u003e\n                \u003c/a\u003e\n            \u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\u003ctbody\u003e\n\u003c/table\u003e\n\u003c!-- readme: contributors -end --\u003e\n\n## License\n\nThis project is licensed under the BSD 3-Clause License - see the [LICENSE](LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshakthizen%2Fps_list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshakthizen%2Fps_list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshakthizen%2Fps_list/lists"}