help
substack way of --help
Install
$ npm install help
Usage
var help = require('help')('usage.txt')
if () {
return help(0)
}
API
help(filepath)
returns function(code)
Pipes the contents of to process.stdout
.
code
is the exit code. If not falsy, then the process is explictly exited.
Full example
var help = require('help')('usage.txt')
var args = process.argv.splice(2)
if (args[0] === '-h' || args[0] === '--help' || args[0] === 'help') {
return help()
}
if (isNan(args[0])) {
return help(1)
}
Author
Evan Lucas
License
MIT (See LICENSE
for more info)