一个最简单 node.js 命令行工具
一个最简单 node.js 命令行工具
node.js cli
$ node cli.js xyz
# OR
$ node cli xyz
接受参数 process.argv
- js
"use strict";
/**
*
* @author xgqfrms
* @license MIT
* @copyright xgqfrms
* @created 2020-07-17
* @modified
*
* @description node.js cli & process.argv
* @difficulty Easy
* @complexity O(n)
* @augments
* @example
* @link
* @solutions
*
*/
const log = console.log;
// 接受参数 process.argv\
function test(args) {
log(`args =`, args)
}
const args = process.argv[2];
test(args);
// module.exports = test;
- bash
#!/usr/bin/env node
const log = console.log;
console.log(`arguments =`, arguments);
console.log(`process.argv =`, process.argv[2]);
©xgqfrms 2012-2020
www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/13331322.html
未经授权禁止转载,违者必究!