b s s m e0c8121d0c first commit | 3 tahun lalu | |
---|---|---|
.. | ||
doc | 3 tahun lalu | |
fixture | 3 tahun lalu | |
.npmignore | 3 tahun lalu | |
.travis.yml | 3 tahun lalu | |
LICENSE | 3 tahun lalu | |
README.md | 3 tahun lalu | |
example.js | 3 tahun lalu | |
help-me.js | 3 tahun lalu | |
package.json | 3 tahun lalu | |
test.js | 3 tahun lalu |
Help command for node, to use with minimist and commist.
'use strict'
var helpMe = require('help-me')
var help = helpMe({
// the default
dir: path.join(path.dirname(require.main.filename), 'doc'),
// the default
ext: '.txt'
})
help
.createStream(['hello']) // can support also strings
.pipe(process.stdout)
// little helper to do the same
help.toStdout(['hello']
Commist provide a command system for node.
var commist = require('commist')()
var help = require('help-me')()
commist.register('help', help.toStdout)
commist.parse(process.argv.splice(2))
This project was kindly sponsored by nearForm.
MIT