2.0.1 • Published 8 years ago

noptd v2.0.1

Weekly downloads
1,633
License
MIT
Repository
github
Last release
8 years ago

noptd

Build Status Coverage Status

nopt with default values

Note: noptd is only supported on iojs and node v4+. To use with an older version of node, please use noptd@1.

Install

$ npm install --save noptd

Example

// test.js
var nopt = require('noptd')
var shortHand = { help: Boolean, name: String }
var defaults = { name: 'evan' }
var parsed = nopt(shortHand, null)(defaults)
console.log(parsed.name)

Then run with node

$ node test.js
// => 'evan'

Or try passing in a name

$ node test --name test
// => 'test'

Author

Evan Lucas

License

MIT (See LICENSE for more info)