node-getopt:适用于Node.js的POSIX风格的getopt()

时间:2024-06-08 01:40:36
【文件属性】:

文件名称:node-getopt:适用于Node.js的POSIX风格的getopt()

文件大小:11KB

文件格式:ZIP

更新时间:2024-06-08 01:40:36

JavaScript

节点获取 概述 node-getopt为Node实现POSIX getopt()函数。 getopt()提供了用于选项解析的功能接口。 以通常的方式安装npm软件包: $ npm install posix-getopt 这通常是在不带参数的选项“ -a”和“ -b”,带一个参数的选项“ -o”(也称为“ --output”)以及另一个强制性参数的命令中使用它的方式: var mod_getopt = require('posix-getopt'); var parser, option; parser = new mod_getopt.BasicParser('abo:(output)', process.argv); while ((option = parser.getopt()) !== undefined) { switch (option.option) { ca


【文件预览】:
node-getopt-master
----lib()
--------getopt.js(9KB)
----examples()
--------examples.js(1KB)
--------basic.js(2KB)
----LICENSE(1KB)
----README.md(11KB)
----tests()
--------test-getopt.js(2KB)
--------test-tokenize-optstr.js(2KB)
----package.json(400B)

网友评论