
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
substack way of --help
v3 of help requires at least Node.js v4. To use help with an older version,
please use help@2.x.
$ npm install help
var help = require('help')('usage.txt')
if (/* someone requested help */) {
return help(0)
}
returns function(code)
Pipes the contents of to process.stdout.
code is the exit code. If not falsy, then the process is explictly exited.
stream defaults to process.stdout
var help = require('help')('usage.txt')
var args = process.argv.splice(2)
if (args[0] === '-h' || args[0] === '--help' || args[0] === 'help') {
// process prints contents of `usage.txt` and returns
return help()
}
// the first arg must be a number
if (isNaN(args[0])) {
// process prints contents of `usage.txt` and exits with code 1
return help(1)
}
Evan Lucas
MIT (See LICENSE for more info)
FAQs
substack way of --help
The npm package help receives a total of 8,943 weekly downloads. As such, help popularity was classified as popular.
We found that help demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.