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 🙏

© 2024 – Pkg Stats / Ryan Hefner

cliche

v1.0.2

Published

The simple lazy-loading command-line router

Downloads

4,036

Readme

Cliche

Use a hierarchical directory tree to hold your CLI app multi-level subcommands.

Build Status Build Status Coverage Status

This came about from a desire to add more structure to a tool with many nested subcommands, something that can be achieved in other modules, but often with a non-trivial amount of boilerplate. From a performance standpoint Cliche is lazy loading to be as quick as possible even when dealing with very large numbers of subcommands.

For those that like backronyms, how about: CLI Command Hierarchy Executor?

Usage

Install with npm.

npm install cliche

index.js

'use strict'

const cliche = require('cliche')

cliche({
  name: 'cliche-example',
  root: './app',
  routes: [
    'commander',
    'foo/bar',
    'foo/baz',
    'hello/world'
  ]
})

app structure

example
├── app
│   ├── commander.js      # example integration with commander
│   ├── foo
│   │   ├── bar.js        # example commands
│   │   ├── baz.js
│   │   └── .meta.js      # metadata for the foo group
│   ├── hello
│   │   └── world.js
│   ├── .meta.js          # metadata for the root group
│   └── .version.js       # version information
├── index.js
└── package.json

Compatibility

Cliche can integrate with other CLI frameworks and option parsers on a command by command basis. An example integration with commander can be found in example/app/commander.js.

A very complementary module is glob which can remove the overhead of maintaining a list of routes. An example of how this can be achieved can be found in example/globbed.js.

Metadata

There are two levels of metadata: the command level and the directory level.

Command

Currently the only metadata supported for commands is a description used for generating usage information. It can be set on module.exports.description of the relevant command.

example/app/hello/world.js

$ node example hello
[...]
Available subcommands:

  world  a computer program that outputs "Hello, World!"

Directory

Directories function as parent commands, and as such have both a short description which acts as a summary when viewing the parent command, and a longer, more informational about to be shown when in the current command. These values are contained in .meta.js files in the directory itself.

example/app/foo/.meta.js

$ node example
[...]
Available subcommands:

  foo        serves only to demonstrate a concept

$ node example foo
usage: cliche-example foo <command> [<args>]

A parent to both the bar and baz nested subcommands.

Available subcommands:
[...]

Version

A top-level --version flag can be supported by providing a .version.js file.

example/app/.version.js

$ node example --version
version 1.0.0

Example

All commands shown in this file can be run from the root of the repo, and the example project can be copied to use as a base for a new project. The example app is fully usable to get a feel for how Cliche works, here are some commands to try:

$ node example
$ node example --version
$ node example foo
$ node example foo bar now we can pass some arguments
$ node example hello world
$ node example commander --cherries