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

oclip

v0.0.7-4

Published

CLI framework for node/deno in TypeScript

Readme

oclip

Node.js CI codecov

oclip is a new Node CLI flag parser. It has these killer features which you won't find in any other popular CLI tool:

  • lazy-loading commands out of the box means oclip will have the lowest overhead possible. This becomes paramount as CLIs grow.
  • type inference TypeScript is not required, but when it is used oclip will be able to infer all the details about flags and args. You'll rarely ever have to specify types manually.
  • 0 dependencies You don't need a single runtime or even development dependency other than oclip itself. Currently oclip only costs ~10kB. This is particularly great for npx which typically will reinstall a CLI everytime it's run. Try it yourself with npx oclip-example.

Feel free to play around with this code all you like but anticipate heavily breaking changes until we release 1.x.

Quick Start

In a new or existing node project, first add oclip: npm i oclip or yarn add oclip. Then create a basic hello, world CLI:

// typescript
import { command } from 'oclip';
// javascript
const { command } = require('oclip');

command({
  run() {
    console.log('hello world!');
  },
}).exec();

Note: You can also clone the example template

Run this with node path/to/script (for JS) or ts-node path/to/script (for TS). command() creates a command and calling .exec() on it causes it to read process.argv, parse the args/flags, and pass them to the command.

Parsing Arguments

Arguments are required by default, use .optional() to make them optional:

import { command, arg } from 'oclip';

// $ mycli argOne argTwo
command({
  args: [arg('ARG_ONE'), arg.optional('ARG_TWO')],
  run({ args: [argOne, argTwo] }) {
    console.log(`argOne: ${argOne}`);
    console.log(`argTwo: ${argTwo}`);
  },
}).exec();

If you run this script with --help you'll see the following:

$ ts-node src/cli.ts --help
Usage: mycli <ARG_ONE> [<ARG_TWO>]

See below for more argument functionality.

Parsing Flags

import { command, flag } from 'oclip';

// $ mycli --verbose --file=FILENAME
// TypeScript is able to infer that `verbose` is a boolean and `file` is a string.
command({
  flags: {
    // -v for a short char and help description
    verbose: flag.boolean({ char: 'v', description: 'show extra output' }),
    file: flag.input({ char: 'f', description: 'file to read from' }),
  },
  run({ flags: { verbose, file } }) {
    console.log(`verbose: ${verbose}`);
    console.log(`file: ${file}`);
  },
}).exec();

If you run this script with --help you'll see the following:

$ ts-node src/cli.ts --help
Usage: mycli

Options:
  -v, --verbose     # show extra output
  -f, --file        # file to read from

See below for more flag functionality.

Project Scope

Main goals:

  • To be the tool of choice for the Node community's CLIs in TS and JS
  • Option/flag parsing in the GNU style
  • Powerful args/flags functionality that can be extended for resuable custom behavior/types
  • Subcommand dispatching with lazy-loading
  • In-CLI help output
  • Completions for bash/zsh/fish
  • Man-page CLI doc generation
  • Never requiring a dependency, internal or external
  • Doing whatever we can to make TypeScript inference and types as helpful as possible
  • Providing configuration support
  • Middleware hooks

Anti-goals include:

  • plugin support—this is oclif's domain
  • project generators—if we need that then we're doing something too complex
  • repls—like vorpal
  • Building this in another language
  • Classes, decorators, or any other kind of alternate syntaxes. We need to support the ability to be flexible, but the way things are done must be consistent
  • Doing really anything after the command starts

Arguments

Multiple/Rest Args

Label an argument as multiple to allow N number arguments at the end:

// $ mycli source destination_1 destination_2 destination_3
command({
  args: [arg('source'), arg.multiple('destination')],
  run({ args: [source, ...destinations] }) {
    console.log(`source: ${source}`);
    for (const destination of destinations) {
      console.log(`destination: ${destination}`);
    }
  },
}).exec();

Flags

Subcommands/Subtopics

Break up your CLI into separate commands:

// run these with `$ mycli login` or `$ mycli refresh`
topic({
  children: {
    login: command({
      /*...*/
    }),
    refresh: command({
      /*...*/
    }),
  },
}).exec();

Subtopics

Or you can also have subtopics which can sit next to commands:

// run these with `$ mycli auth login` or `$ mycli auth token get`
topic({
  children: {
    auth: topic({
      children: {
        login: command({
          /*...*/
        }),
        logout: command({
          /*...*/
        }),
        token: topic({
          get: command({
            /*...*/
          }),
          reset: command({
            /*...*/
          }),
        }),
      },
    }),
  },
}).exec();

Note: We will not be supporting "topic-commands" (commands that are also a topic) like oclif does because it is not compatible with space-separated commands.

Lazy-loading subtopics/subcommands

Node takes a comparatively long time to require modules. Because the convention is to place require()s at the top of the file, if you simply do this at the top for all of the commands it would force the CLI to load all the scripts and all the dependencies before doing anything.

That results in very poor performance for CLIs and is one of the main things that oclip solves for you.

You can either specify the path that a topic/command is in or a directory root of topics/commands.

Lazy-loading with module path

In this case, imagine we've defined the CLI root at ./src/cli.ts. We have 2 commands we want to nest that are at ./src/topics/auth/login.ts and ./src/topics/auth/logout.ts.

topic({
  children: {
    auth: topic({
      children: {
        login: path.join(__dirname, '/topics/auth/login'),
        logout: path.join(__dirname, '/topics/auth/logout'),
      },
    }),
  },
}).exec();

Note: __dirname is the directory of the script. It's handy in this case since we usually want to load scripts relative to the current path.

Lazy-loading with command root

Alternatively, we can set the commandRoot option of a topic to have it add topics and commands from a directory. Directories are subtopics and ts|js files are commands. Using the same file structure as above, we can get the same result with this:

topic({
  commandRoot: path.join(__dirname, '/topics'),
}).exec();

Note: It's possible to define both a commandRoot and children. This means they could conflict. oclip will attemp to merge the 2 and if there is a conflict, children always wins.

Dynamically Generated Commands

For some use-cases commands are not static but generated in code. There are 2 ways of doing this, either by building the commands and passing them in as children or specifying a getChild() function.

Here is an example of building the children:

const commandNames = ['foo', 'bar', 'baz'];
const commands = commandNames.map(name => [
  name,
  command({
    run() {
      console.log(`running command: ${name}`);
    },
  }),
]);

topic({
  children: Object.fromEntries(commands),
}).exec();

And here is getChild(). Note that these can't be displayed in the help without customizing the topic's help manually.

topic({
  getChild(name) {
    // this essentially acts as a catch-all handler
    // it can return a topic, command, or nothing
    return command({
      run() {
        console.log(`running command: ${name}`);
      },
    });
  },
}).exec();

Note: I do not recommend dynamic at all as it has to execute all of the commands and topics so you lose all the performance benefits from the lazy-loading. If you're considering this approach, I would first consider if you could generate the commands in a build step before releasing a new version of the CLI rather than having the client generate them. Being mindful of start time is super important in Node CLIs and work like this that's done before every run (including --help) is usually pretty damaging.

Running Commands Programmatically

The .exec() method on a command/topic are simply functions that return a promise. By default, they will use process.argv as their input, but this can be modified.

As an example:

const cmd = command({
  flags: { verbose: flag.boolean('v') },
  run: async ({ flags }) => {
    return flags.verbose;
  },
});
const p = cmd.exec(['-v']); // p is a promise that evaluates to true
const q = cmd.exec([]); // q is a promise that evaluates to false

Testing

The .exec() method on a command/topic are simply functions that return a promise. By default, they will use process.argv as their input, but this can be modified. Usually you'll want to do this when writing a test or calling a command from another command. Here is a Jest test example:

test('--verbose', async () => {
  await command({
    flags: { verbose: flag.boolean('v') },
    run: ({ flags }) => {
      expect(flags).toMatchObject({ verbose: true });
    },
  }).exec(['-v']);
});

If it errors it will reject the promise it returns:

test('errors if flag is not valid', async () => {
  const cmd = command({
    flags: { verbose: flag.boolean('v') },
    run: ({ flags }) => {
      expect(flags).toMatchObject({ verbose: true });
    },
  });
  await expect(cmd.exec(['--invalid-flag'])).rejects.toThrowError(
    /Unexpected argument: --invalid-flag/
  );
});

Use stdout-stderr if you want to check output:

import { stdout } from 'stdout-stderr';

test('prints to stdout', async () => {
  stdout.start();
  await command({
    run: () => console.log('sample text'),
  }).exec([]);
  stdout.stop();
  expect(stdout.output).toEqual('sample text\n');
});

Error status codes

Error codes 190-199 are reserved for oclif use.

  • 190: unhandled exception
  • 191: help signal

FAQs

What's the difference between this and oclif?

oclif is a full-fledged CLI framework that will soon be using oclip under the hood. In particular, the plugin functionality lets users add plugins to extend functionality. oclif is an opinionated framework that requires you to follow its conventions for how commands are organized.

oclip is a much simpler project. It was built to take advantage of newer parts of TypeScript so it has better type inference than oclif's classes. It makes no opinions of structure and does not require a generator to build a project.

Both oclif and oclip are built for speed. They both support lazy-loading commands which is something no other Node CLI parser offers and crucial for medium–large CLIs. oclif only has a handful of dependencies and oclip has exactly 0.

As a departure from oclif, oclip will support space-separated arguments. Later we plan to add colon-separated arguments like in oclif.

Use oclif if:

  • You want plugins
  • You want commands represented as classes
  • You want colon-separated arguments
  • You prefer an opinionated setup

Use oclip if:

  • You want things to be simple (oclip has 0 dependencies)
  • You need more control for things like dynamically generated commands
  • You want space-separated arguments
  • You want the best type inference available for TypeScript CLIs

Can I convert from oclif to oclip?

Short answer is no. oclip will never reach feature parity with oclif—chiefly plugins.

For consistency we'd like oclif to use oclip under the hood. This is a change that will be opt-in as the parser is completely modular in oclif and even now can be swapped out for anything. So the improved type inference will at some point come to oclif.

If you currently have an oclif CLI and want some of the functionality of oclip (like dynamic commands, for example), you're going to have to manually rewrite all the commands. It might also be possible to craft a base class that uses oclip.

TODO

  • [ ] normalized filepath arg/flag
  • [ ] integer arg/flag
  • [ ] env var arg/flag
  • [ ] commandPath
  • [ ] commandPath deep merging of topics
  • [ ] manifest file to help with ^^ and make help fast
  • [ ] help examples
  • [ ] mycli help foo
  • [ ] --
  • [ ] style errors
  • [ ] hooks/middleware?
  • [ ] oclif integration
  • [ ] global flags
  • [ ] completions
  • [ ] grouping in help
  • [ ] countable booleans (e.g.: -vvv)
  • [ ] js example
  • [ ] "did you mean?"
  • [ ] config support
  • [ ] onload middleware
  • [ ] onparse middleware
  • [ ] onerror middleware
  • [ ] onexit middleware
  • [ ] override CLI bin name