Socket
Socket
Sign inDemoInstall

help-version

Package Overview
Dependencies
2
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    help-version

Easily handle --help and --version arguments in your CLI application


Version published
Weekly downloads
176
decreased by-94.26%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

npm

help-version

Build Status Dependency Status

Automatic handling of --help and --version arguments for CLI applications.

Example

#!/usr/bin/env node

var helpVersion = require('help-version')(usage());

function usage() {
  return 'Usage:  my-app [file]';
}

helpVersion.version
//=> "v0.1.0"

console.log('main thing');

Catches --help and --version automatically.

$ ./app.js --help
Usage:  my-app [file]
$ ./app.js --version
v0.1.0
$ ./app.js
main thing

API

helpVersion(help, [version])

Checks process.argv for --help or --version, prints help or version if found one.

version defaults to version field from your local package.json.

Returns an object { help: help, version: version }.

Install

npm install help-version

License

MIT

Keywords

FAQs

Last updated on 23 May 2015

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc