
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
node-options
Advanced tools
========
This module is a command line argument parser, based on regular expression. It is able to validate the arguments based on the "properties" of an object.
#LICENSE:
This module is licensed under the Apache License v2.0
npm install node-options
var options = require('options');
// A simple use case for an http server could be that you want to be able
// to specify the port number on which your server will listen by having
// a default value in the code (e.g. 3000) or use the PORT environment
// variable, if it is present or finally specify the port number on the
// command line (e.g. --port=8080). You could also change your server
// verbosity (e.g. logging) by adding "--verbose" to the command line.
// Finaly, you want to be able to change the path from which your server
// would serve the "static" html pages.
//
var opts = {
"port" : process.env.PORT | 3000,
"verbose" : false
};
// Remove the first two arguments, which are the 'node' binary and the name
// of your script.
var result = options.parse(process.argv.slice(2), opts);
// If an argument was passed on the command line, but was not defined in
// the "opts" object, lets print the USAGE.
if (result.errors) {
if (opts.verbose) console.log('Unknown argument(s): "' + result.errors.join('", "') + '"');
console.log('USAGE: [--port=3000] [--verbose] [public/path/to/static/resources]');
process.exit(-1);
}
console.log('port=', opts.port);
console.log('verbose=', opts.verbose);
if (result.args)
if (result.args.length === 1) {
console.log('public=', result.args)
} else {
console.log('Only one non-option argument is supported by the app: '" + result.result.join('", "') + '"');
process.exit(-2);
}
}
If you want to pass some arguments to another process "as-is", the parser support the double-dash as an indicator to grab all the arguments left and return them in the "result.passThrough" property.
node server.js --verbose --port=80 proxy.json -- --port=80 ./public/static/www
^ ^ ^ ^ ^
| | | | |
opt.verbose --+ | | | |
opt.port ---------------+ | | |
result.args[0] -------------------+ | |
result.end[0] ----------------------------------+ |
result.end[1] --------------------------------------------+
All the options needs to be first (e.g. --XXX) and they are stored in the object passed to the parse function (e.g. options.parse(arguments.argv.slice(2), OBJECT). After the options, the "free form" files, paths, text is stored into the returned object inside the property 'args' which is an array. Lastly, if a double dash is encountered everyting afterward is in the returned object property 'end'.
FAQs
Parse the command line arguments
The npm package node-options receives a total of 13,514 weekly downloads. As such, node-options popularity was classified as popular.
We found that node-options 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.