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

140-opts

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

140-opts

140 bytes fancy options parsing

  • 1.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

140-opts Build Status

Command line arguments parser. This one doesn't do much. But it feets in a tweet.

Installation

$ npm install 140-opts

Alternately, to just copy the file into your repo and avoid an additional package.json dependency:

$ curl https://cdn.rawgit.com/mklabs/140-opts/master/opts.js > 140-opts.js

# or maybe
$ git clone https://github.com/mklabs/140-opts.git lib/140-opts

Code

module.exports = function(a){return a.map(function(c,d){return{n:c.match(/^--?(.+)/),v:a[d+1]||!0}}).reduce(function(a,b){b.n&&(a[b.n[1]]=b.v);return a},{})}

in a sligtly more readable way

// 242-opts
module.exports = function (a) {
  return a
    .map(function (c, d) {
      return {
        n: c.match(/^--?(.+)/),
        v: a[d+1]||!0
      };
    })
    .reduce(function (a, b) {
      b.n&&(a[b.n[1]]=b.v);
      return a;
    }, {})
};

Usage

var opts = require('140-opts')(process.argv.slice(2));
console.log(opts);

Takes a single argument, an array of String to parse, usually process.argv.slice(2).

var opts = require('140-opts');
var argv = opts(['--foo', 'foo', '--bar', 'bar', '-b', 'baz', '-o', 'woot', '--blah']);
assert.deepEqual(argv, {
  foo: 'foo',
  bar: 'bar',
  b: 'baz',
  o: 'woot',
  blah: true
});

Tests

    $ node test


    Success!

    $ --foo foo --bar bar -b baz -o woot --blah

    { foo: 'foo', bar: 'bar', b: 'baz', o: 'woot', blah: true }

    \o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/                        \o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/                        \o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/       We did it!       \o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/                        \o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/                        \o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/
    \o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/\o/

educational and experimental, doing 140bytes snippet of node code is kinda silly... But it's fun! And it's a good opportunity to learn some super-interesting byte saving techniques

FAQs

Package last updated on 05 Jun 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