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

@opt/words

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@opt/words

Plugin for @opt/parse allowing words to be options for nopt

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@opt/words

Build Status Dependency Status npm version Coverage Status

Plugin for @opt/parse allowing words to be options for nopt.

See @opt/parse

See @opt/nopt

See @use/core

Install

npm install @opt/words --save

Usage

var parse = require('@opt/parse')

// make nopt the parser and apply our words plugin
parse.use('@opt/nopt', '@opt/words')

var options = {
  file: [String, Array] // accept multiple strings
}

var aliases = {
  // normal alias stuff for nopt still applies.
  // these are what's after the prefix '-' or '--'.
  f: '--file', // an example

  // here's what this plugin handles.
  $words: {
    // everything here is a whole word, not prefixed with anything.
    file: '--file'
  }
}

// an example args array
var argv = [ 'node', 'some.js', 'file', 'some/file.js' ]

// then use parse as you would use `nopt`,
// plus any changes made possible by the plugins added
options = parse(options, aliases, argv, 2)

// the above would produce:
options = {
  file: [ 'some/file.js' ],
  argv: {
    original: [ 'node', 'some.js', 'file', 'some/file.js' ]
    cooked  : [ 'node', 'some.js', '--file', 'some/file.js' ]
    remain  : []
  }
}

// nopt would have had no `file` values and remain would be:
// [ 'file', 'some/file.js' ]

MIT License

Keywords

FAQs

Package last updated on 04 Jan 2017

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