nodejs 命令行获取入参

Posted 贝尔塔猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs 命令行获取入参相关的知识,希望对你有一定的参考价值。

安装:npm install yargs --save-dev

 

Example

index.js

const argv    = yargs.alias(‘n‘, ‘name‘).alias(‘p‘, ‘port‘).alias(‘t‘, ‘tpl‘).argv
console.log(argv.name);

 

命令行输入: $ node index.js -n fuck -p 8080 -tpl components


以上是关于nodejs 命令行获取入参的主要内容,如果未能解决你的问题,请参考以下文章

在nodejs中逐字获取命令行参数

命令行通过入参调用jar包

nodejs怎么调用python命令行

手把手教你使用nodejs编写cli(命令行)——拉取远程仓库作为代码模板

nodejs常用代码片段

使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面