Analysis updated 2026-06-24
Kill a stuck process by port number with `fkill :8080` when your local dev server is not releasing its port.
Open the interactive picker to browse all running processes, filter by name, and stop the ones using high CPU or memory.
Force-kill a stubborn application that ignores a normal stop request using the force-kill flag.
| sindresorhus/fkill-cli | hpneo/gmaps | sbstjn/timesheet.js | |
|---|---|---|---|
| Stars | 6,986 | 6,983 | 6,982 |
| Language | JavaScript | JavaScript | JavaScript |
| Setup difficulty | easy | easy | easy |
| Complexity | 1/5 | 2/5 | 2/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
fkill-cli is a small command-line tool that lets you stop running programs on your computer. It works on macOS, Linux, and Windows. You install it once via npm and then use it from a terminal whenever you need to shut down a process that is stuck or that you want to close. You can target a process by its numeric ID, by its name, or by the network port it is listening on. For example, typing fkill safari stops Safari, and fkill :8080 stops whatever program is using port 8080. You can also list several targets at once to stop multiple processes in a single command. If you run fkill without any arguments it opens an interactive screen where you can browse running processes and pick which ones to stop. This view supports fuzzy search, so you can type part of a name to filter the list. It also shows indicators for processes using a lot of CPU or memory, which makes it easier to spot the ones causing problems. A force-kill option is available for processes that ignore a normal stop request, and a timeout option lets you specify how many seconds to wait before escalating to a force kill.
fkill-cli is a cross-platform command-line tool to stop running processes by name, ID, or port number, with an interactive fuzzy-search picker when you run it without arguments.
Mainly JavaScript. The stack also includes JavaScript, Node.js.
No license information was provided in the explanation.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.