Socket
Socket
Sign inDemoInstall

argv-formatter

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    argv-formatter

Bizarro minimist: transform an options object into argv


Version published
Weekly downloads
1M
decreased by-5.96%
Maintainers
1
Install size
4.84 kB
Created
Weekly downloads
 

Readme

Source

argv-formatter

Bizarro minimist: transform an options object into into a process.argv-like array. Helpful for using child_process and passing complex arguments more easily.

Setup

$ npm install --save argv-formatter

API

formatter.format(object) -> Array

Accepts an object of containing options and arguments and returns an array of arguments.

  • options with a value of true will be included with a flag only ({R: true} -> ['-R'])
  • options that are falsey will be removed
  • all values will be stringified, ({D: new Date(0)} -> ['-D', 'Thurs Jan 1 1970...'])
  • arguments can be passed under the _ key as a value or array of values

Examples

To generate arguments to a git log command for printing the short hashes of commits that have changed our test files:

var args = formatter.format({
  _: './test/*',
  format: '%h'
});
console.log(args.join(' ')); // --format=%h ./test/*

git-log-parser uses this to spawn a git process:

var spawn     = require('child_process').spawn;
var formatter = require('argv-formatter');
var args      = formatter.format(options);
var child     = spawn('git', ['log'].concat(args));

Keywords

FAQs

Last updated on 23 Nov 2014

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