Sha256: 419fd0c250623dcf67bb4993817881331c17096960907ee34adc85af9e74da31

Contents?: true

Size: 1.51 KB

Versions: 199

Compression:

Stored size: 1.51 KB

Contents

#!/usr/bin/env node
var nopt = require("../lib/nopt")
  , path = require("path")
  , types = { num: Number
            , bool: Boolean
            , help: Boolean
            , list: Array
            , "num-list": [Number, Array]
            , "str-list": [String, Array]
            , "bool-list": [Boolean, Array]
            , str: String
            , clear: Boolean
            , config: Boolean
            , length: Number
            , file: path
            }
  , shorthands = { s: [ "--str", "astring" ]
                 , b: [ "--bool" ]
                 , nb: [ "--no-bool" ]
                 , tft: [ "--bool-list", "--no-bool-list", "--bool-list", "true" ]
                 , "?": ["--help"]
                 , h: ["--help"]
                 , H: ["--help"]
                 , n: [ "--num", "125" ]
                 , c: ["--config"]
                 , l: ["--length"]
                 , f: ["--file"]
                 }
  , parsed = nopt( types
                 , shorthands
                 , process.argv
                 , 2 )

console.log("parsed", parsed)

if (parsed.help) {
  console.log("")
  console.log("nopt cli tester")
  console.log("")
  console.log("types")
  console.log(Object.keys(types).map(function M (t) {
    var type = types[t]
    if (Array.isArray(type)) {
      return [t, type.map(function (type) { return type.name })]
    }
    return [t, type && type.name]
  }).reduce(function (s, i) {
    s[i[0]] = i[1]
    return s
  }, {}))
  console.log("")
  console.log("shorthands")
  console.log(shorthands)
}

Version data entries

199 entries across 137 versions & 23 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.18.0 test/dummy/node_modules/node-pre-gyp/node_modules/nopt/bin/nopt.js
disco_app-0.18.0 test/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.18.0 test/dummy/node_modules/fsevents/node_modules/nopt/bin/nopt.js
disco_app-0.18.2 test/dummy/node_modules/node-pre-gyp/node_modules/nopt/bin/nopt.js
disco_app-0.18.2 test/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.16.1 test/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.15.2 test/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.18.4 test/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.18.1 test/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.14.0 test/dummy/node_modules/nopt/bin/nopt.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/nopt/bin/nopt.js
tang-0.2.1 spec/tang_app/node_modules/nopt/bin/nopt.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/nopt/bin/nopt.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/nopt/bin/nopt.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/nopt/bin/nopt.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/nopt/bin/nopt.js
tang-0.2.0 spec/tang_app/node_modules/nopt/bin/nopt.js
tang-0.1.0 spec/tang_app/node_modules/nopt/bin/nopt.js