Node.js
명령 줄 인수 구문 분석
수색…
전달 동작 (동사) 및 값
const options = require("commander");
options
.option("-v, --verbose", "Be verbose");
options
.command("convert")
.alias("c")
.description("Converts input file to output file")
.option("-i, --in-file <file_name>", "Input file")
.option("-o, --out-file <file_name>", "Output file")
.action(doConvert);
options.parse(process.argv);
if (!options.args.length) options.help();
function doConvert(options){
//do something with options.inFile and options.outFile
};
부울 스위치 전달
const options = require("commander");
options
.option("-v, --verbose")
.parse(process.argv);
if (options.verbose){
console.log("Let's make some noise!");
}
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow