npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

death-cli

v1.1.0

Published

Command line tool to kill processes

Readme

Death CLI

A command-line interface (CLI) tool for managing system processes. Death provides both an interactive mode and command-line options for listing and killing processes.

⚠️ Important Disclaimer

This tool is intended for process management purposes only using a play on words. If you're experiencing thoughts of self-harm or harming others, please seek help immediately. You are not alone, and there are professionals ready to help:

  • National Suicide Prevention Lifeline (US): 988 or 1-800-273-8255
  • Crisis Text Line: Text HOME to 741741

Please consult with a licensed medical professional or mental health provider for proper care and treatment in a safe controlled environment. Your life has value, and help is available 24/7.

Features

  • 🔍 List all running processes with details (PID, CPU%, Memory%, Command)
  • ⚡ Kill processes by PID
  • 🖥️ Interactive mode with a user-friendly interface
  • 📊 Formatted table output for better readability

Installation

Local Development Setup

  1. Clone the repository:
git clone https://github.com/bittricky/death-cli.git
cd death
  1. Install dependencies:
npm install
  1. Link the package locally (optional):
npm link

Usage

Running Locally

# Using npm scripts
npm run dev      # Start in interactive mode
npm start        # Alternative way to start

# If globally linked
death           # Start in interactive mode

Command Line Options

# Show help
death --help

# List all processes
death -l
death list

# Kill a process by PID
death -k <pid>
death kill <pid>

# Run in interactive mode
death -i

Interactive Mode

In interactive mode, you can:

  1. View all running processes in a formatted table
  2. Kill processes by entering their PID
  3. Refresh the process list
  4. Navigate using arrow keys and enter

Commands and Flags

| Command/Flag | Description | | ------------------- | -------------------------- | | list | List all running processes | | -l, --list | List all running processes | | -k, --kill <pid> | Kill a process by PID | | -i, --interactive | Run in interactive mode | | -h, --help | Show help text | | -v, --version | Show version |

Project Structure

death/
├── index.js          # Entry point
├── utils/
│   ├── cli.js        # CLI interface and command handling
│   └── processes.js  # Process management functions
└── package.json

Dependencies

  • chalk - Terminal string styling
  • inquirer - Interactive command line interface
  • cli-table3 - Pretty unicode tables
  • meow - CLI app helper

License

MIT

Author

Mitul Patel