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

commander.js-decorated

v0.0.3

Published

A typescript decorator based wrapper for commanderjs

Readme

Commander JS (Decorated)

"What good is a true Commander if they're not decorated?" *ba dum tss!*

Installation

npm install commander.js-decorated

Command Groups

Command Groups can be used to containerize a group of commands. Let's start by creating a simple CommandGroup.

import { CommandGroup, Command } from 'commander.js-decorated';
import { program }               from 'commander.js';


// If no name is specified, it'll convert the class name to kebab case and uses that
@CommandGroup(name?: string)
class Bucket {

	// If no name is specified, it'll convert the method name to kebab case and uses that
	@Command(name?: string)
	add() {
		console.log('Added!');
	}

	@Command()
	remove() {
		console.log('Removed!');
	}
}


// Now (Bucket as any).toCommand(); will give you a commander.js Command that you can add to your existing commander.js setup.
program.add((Bucket as any).toCommand());

Options

Option flags can be added with a decorator to each command:

import { CommandGroup, Command, Option } from 'commander.js-decorated';
import { program }                       from 'commander.js';

@CommandGroup()
class Bucket {

	@Command()
	@Option('--env', 'name of the environment')
	@Option('--foo [value]', 'some description', { validValues : [ 'bar', 'lorem' ] })
	add({ env, foo } = {}) {
		console.log('Added with env as: ' + env);
	}

	@Command()
	remove() {
		console.log('Removed!');
	}
}

Arguments

Arguments follow the same syntax as commander.js Argument.

import { CommandGroup, Command, Option } from 'commander.js-decorated';
import { program }                       from 'commander.js';

@CommandGroup()
class Bucket {
	@Command()
	@Option('--verbose')
	@Argument('[arg2...]', 'description')
	@Argument('<arg1>', 'description', { validValues : [ 'foo', 'bar' ] })
	add() {
		console.log('Removed!');
	}
}

Note that decorators are ordered from bottom -> top meaning the lower @Argument will be added first then the upper @Argument.

Roadmap

  1. Nested CommandGroups: We're currently exploring different patterns and trying to determine the best solution with least amount of maintenance.
  2. Custom Help Command

Contributions

All proposals are welcome!

License

                GNU GENERAL PUBLIC LICENSE
                   Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. https://fsf.org/ Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.