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

@phoenix-plugin-registry/tarcisio.command-runner

v0.0.16

Published

Add hotkeys for running command line tools.

Readme

Command Runner

Bracktes extension that allow develper add dynamically hotkeys for command line tools.

Install

  1. Install Brackets Sprint 36 or later.
  2. In Brackets, click the menu item File > Extension Manager...
  3. Go to the "Available" tab of the dialog that appears.
  4. Type "Command Runner" in the search box.
  5. Click the "Install" button in the search result for Command Runner.

Usage

Create a file "cmdrunner.json" inside of your project folder. Use cmdrunner.json of this project as example.

The file cmdrunner.json is a JSON file that contains the configuration of commands. Must contains a array with command objects. The command object has follwing structure:

{
    "label": "string",

    "cmd": "string",

    "args": [ array ],

    "key": "string",

    "opts": {
        "defaultPath": "string",

        "hiddenConsole": bool,

        "killCmd": "string"
    }
}

Following is a description of each attribute:

label: Label that show in menus and quick search.

cmd: Command that will be executed. You can use $0, $1, ... $n to specify custom arguments, that will be prompted for user.

args: Array that contains default arguments, in case user supply anything.

key: Hotkey that will perform a quick access to command.

splitChar: Specify the char that will separate arguments of command. Default value is ':'.

opts: Optional attributes that configure some options of execution environment.

opts.defaultPath: Directory path where command will executed.

opts.hiddenConsole: True indicates that output panel will not open after command execution.

opts.killCmd: Command that will be triggered by 'Kill Commands' menu option.

System Parameters: Reserved variables that can be used to compose commands.

$selectedFile Path to selected file.

$dirOfSelectedFile Path to directory of selected file.

$projectDir Path directory of project.

Screenshots

Screenshot of quick open menu Screenshot of output panel Screenshot of input arguments Screenshot of commands menu

Change log

0.0.15

Features: - Accepted pull request to work in OSX. - Add new option splitChar.

0.0.14

Features:

- Add killCmd option on configuration.

0.0.13

Features:

- Color on output (thanks for partageit suggestion).

0.0.12

Features:

- Specific menu "Commands"
- Kill commands menu option
- Show panel menu option
- Hide panel menu option
- Clear panel menu option
- Add extra option hiddenConsole.

Bugfixes:

- Fix output update on panel output.

License

Command Runner is released under the MIT license.