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

@ramkumarbedia/xqme

v1.1.1

Published

Cross-platform Node CLI

Readme

qme-cli

qme-cli is a cross-platform developer command-line toolkit focused on speeding up everyday project setup and workflow tasks.

It provides shortcuts for:

  • Git initialization and sync flows
  • SSH key generation helpers
  • Windows/macOS utility commands (like Postman, Chrome, XAMPP, and more)
  • Quick local productivity commands from a single qme entry point

Package: @ramkumarbedia/xqme

Commands (One by One with Example)

  1. qme init [--branch <branch-name>] Initializes qme defaults in the current repository (gitignore, hooks, branch config).
qme init --branch main
  1. qme git init [--branch <branch-name>] First-time git bootstrap for non-git folders, with optional initial branch.
qme git init --branch main
  1. qme git sync Runs guided commit/pull/push flow.
qme git sync
  1. qme git reset Opens reset menu (soft, mixed, hard) for recent changes.
qme git reset
  1. qme git log Shows paginated commits and lets you reset to a selected commit.
qme git log
  1. qme git open Opens current repository remote URL in browser.
qme git open
  1. qme git remove Removes .git folder after confirmation.
qme git remove
  1. qme git ssh-key [--home <path>] [--comment <demo-email>] [--tag <name>] Generate a new RSA 4096 SSH key in your auto-detected platform home directory (~/.ssh).
qme git ssh-key --home "C:\Users\ADMIN" -c "[email protected]" -f "oodle"
  1. qme config branch <branch-name> Stores pull branch for current repo in qme config.
qme config branch develop
  1. qme config export [output-path] Exports qme config file backup.
qme config export "D:\backup\mycli-config.json"
  1. qme config xampp-path [path|--show|-s|--clear] Sets, shows, or clears configured XAMPP location.
qme config xampp-path "D:\xampp"
  1. qme config xampp-current [version|--show|-s|--clear] Sets, shows, or clears active XAMPP version label in config.
qme config xampp-current 8.1
  1. qme npm <args...> Pass-through for npm commands.
qme npm run dev
  1. qme n <args...> Shortcut alias for npm pass-through.
qme n install
  1. qme npx <args...> Pass-through for npx commands.
qme npx prisma generate
  1. qme pa <args...> Runs Laravel Artisan with passed arguments.
qme pa migrate
  1. qme win <action|cmd...> Runs a Windows action or raw command through cmd.
qme win settings
  1. qme w <action|cmd...> Alias for qme win.
qme w notepad
  1. qme wintask Opens Task Manager.
qme wintask
  1. qme taskm Task Manager shortcut.
qme taskm
  1. qme wl Locks current Windows session.
qme wl
  1. qme path Opens current folder in File Explorer.
qme path
  1. qme postman Opens Postman (non-blocking).
qme postman
  1. qme chrome Opens Google Chrome.
qme chrome
  1. qme gchat Opens Google Chat desktop app.
qme gchat
  1. qme hub [start|stop] Starts or stops Hubstaff app.
qme hub stop
  1. qme mail Opens Thunderbird app.
qme mail
  1. qme notepad [file] Opens Notepad, optionally with a target file.
qme notepad notes.txt
  1. qme note [text] Without text, opens today note file on Desktop. With text, appends text to today's note file.
qme note "daily update done"
  1. qme notes [text] Alias for qme note.
qme notes "follow up tomorrow"
  1. qme quit Force closes apps and shuts down Windows.
qme quit
  1. qme xampp start Starts XAMPP (Windows/macOS). On start, qme checks phpMyAdmin readiness.
qme xampp start
  1. qme xampp stop Stops XAMPP (Windows/macOS).
qme xampp stop
  1. qme xstart Shortcut for qme xampp start.
qme xstart
  1. qme xstop Shortcut for qme xampp stop.
qme xstop