Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

commander-rxjs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

commander-rxjs

A simple adapter to easily use RxJS with commander.

  • 0.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

commander-rxjs

NPM Version TravisCI Codecov

A simple adapter to easily use RxJS with commander.

Installation

$ npm install commander-rxjs

Important: commander and rxjs are both peer dependencies. You must install them alongside commander-rxjs.

$ npm install commander rxjs

API

ObservableCommand

commander exports an instance of a Command:

import program from 'commander';

program
  .command('example')
  .action(options => {
    // do stuff
  });

program
  .parse(proces.argv);

commander-rxjs exports an instance of a wrapped Command known as an ObservableCommand.

The ObservableCommand has the exact same API as a Command, with the addition of one function, observe(), which is used in place of the .action() function:

import program from 'commander-rxjs';

program
  .command('example')
  .observe()
  // ... do stream stuff
  .subscribe();

program
  .parse(proces.argv);

observe()

returns an RxJS observable stream with the following data:

{
  args: {
    'camelCasedArgument': 'value',
    '...': '...'
  },
  options: {
    'camelCasedOption': 'value',
    '...': '...'
  },
  command: Command // (commander raw command)
}

Examples

Be sure to checkout all of the examples. They can easily be run with npm run example:[example].

FAQs

Package last updated on 06 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc