
Security News
Official Go SDK for MCP in Development, Stable Release Expected in August
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
argv-parser
Advanced tools
Argv-parser is a small and simple node.js module to parser `process.argv`.
Argv-parser is a small and simple node.js module to parse
process.argv
Argv-parser is designed to be simple and will do nothing about:
npm install argv-parser --save
var parser = require('argv-parser');
Parse argument vector (argv) or something like argv.
ret
Object
Object
the parsed objectObject
the warnings of each option. If not exists, ret.warning
will be an empty objectObject
the errors of each option.Array
process.argv
or something like that.
Object
Object
an extended nopt
rulesNumber
(optional, default to 2
) the offset from which the parser should start to parse.The same as parser.parse
Object
Object
Object
(optional) type definitions. For most cases, you needn't this optiontest.js
var rules = {
open: {
type: Boolean,
value: true
},
port: {
type: Number,
short: 'p',
value: function(port, parsed, tool) {
if(!port){
port = 9230;
}
if(port < 8000){
tool.warn('port < 8000 which is dangerous');
if(port < 1000){
tool.error('port < 100 which is forbidden');
return;
}
}
return port;
}
},
html: {
type: 'html',
},
name: {
type: String
}
};
var data = parser.parse(process.argv, {
rules: rules
});
Default values:
$ node test.js
> data.parsed.open; // true
> data.parsed.port; // 9230
Type limitation:
$ node test.js --port 8888 --no-open --name name<script>alert(123)</script>
> data.parsed.open; // false
> data.parsed.port; // 8888
> data.parsed.name; // 'namealert(123)'; -> stripped
> data.errors; // {}
> data.warnings; // {}
Warnings and errors:
$ node test.js --port 888 --no-open --name name<script>alert(123)</script>
> data.parsed.open; // false
> data.parsed.port; // undefined; -> error
> data.parsed.name; // 'name<script>alert(123)</script>'
> data.errors; // {port: ['port < 100 which is forbidden']}
> data.warnings; // {port: ['port < 8000 which is dangerous']}
FAQs
Argv-parser is a small and simple node.js module to parser `process.argv`.
We found that argv-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
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.