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

argufy

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

argufy

Parse command line arguments to Node.js CLI programs.

  • 1.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
129
increased by21.7%
Maintainers
1
Weekly downloads
 
Created
Source

argufy

npm version

yarn add -E argufy

argufy will parse command line arguments to Node.js CLI programs.

API

The package assumes that the arguments begin from the 3rd position, i.e.,

node example.js --title "Hello World"

argufy(
  config: <string, ConfigItem>,
  argv?: string[],
): object

The flags from the arguments will be extracted according to the configuration object and the arguments array. If arguments array is not passed, process.argv is used to find arguments.

import argufy from 'argufy'

const config = {
  title: { short: 't', command: true },
  list: { short: 'l', boolean: true },
  app: 'a',
  delay: 'y',
  file: 'f',
  wait: { short: 'w', number: true },
  'no-empty': 'e',
  resize: 'z',
  colors: 'c',
  dir: 'D',
}

const res = argufy(config, process.argv)
console.log(JSON.stringify(res, null, 2))
node example.js --title Hello_World -w 10 -l -app Argufy
# or
node example.js Hello_World -w 10 -l -app Argufy
# no support "for arguments with space"
{
  "_argv": [],
  "title": "Hello_World",
  "list": true,
  "app": "Argufy",
  "wait": 10
}

The special _argv property will be assigned to contain all unmatched arguments. For example, it can be used to pass any additional parameters through to other program.

ConfigItem Type

The configuration for each flag can either be a shorthand string, or an object. If it is an object, it can include the following parameters:

PropertyTypeDescriptionExample
shortstringA short version of the argument.program -t title
booleanbooleanParse argument as a number.program -n 10
commandbooleanCan this argument be a command, i.e., be the first argument without having to follow a flag. Sets the argument to be a string.program command
multiplebooleanIf command is true, should multiple words be parsed as an array of commands. Sets the argument to be an array of strings.program command1 command2

(c) artdecocode 2018

Keywords

FAQs

Package last updated on 24 Jun 2018

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