Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
node-args-parser
Advanced tools
Node.js command line arguments parser.
$ npm install node-args-parser
Require the module and pass it the process.argv
arguments array.
const args = require("node-args-parser")(process.argv)
console.info(args)
An object
is returned having a key for each argument given.
For example:
$ node ./script.js -x 1 -y 2
Will return:
{
"x": 1,
"y": 1,
}
$ node ./script.js -f -r resource
Will return:
{
"f": true,
"r": "resource"
}
if (args.f) {
console.log("flag 'f' is set")
}
Run npm test
FAQs
Command line arguments parser for Node.js
We found that node-args-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.