前端用命令行交互

像一些前端的脚手架,比如 vue-cli 一样,直接在命令行输入一段命令就可以生成一个项目。这是怎么做到的呢?

yargs

我们用 yargs 来接受命令行的参数

先安装 yargs

npm install --save yargs

之后我们新建一个 hello.js

var argv = require('yargs').argv
console.log(argv)

之后我们在命令行中执行这个 js,$ node hello 1
就可以看到打印出 { _: [ 1 ], '$0': 'hello' }
我们在命令行带的参数都在 argv 的_属性中,以数组的形式,该属性可以获取非连词线开头的参数
但是我们如果传入的参数多了,这种保存在数组的形式肯定就没法满足我们的需求了。

在命令行中输入node hello --nama a
打印出来是{ _: [], nama: 'a', '$0': 'hello' }
这时我们可以看到参数可以以 key 和 value 的形式传入。我们只需以--key value以形式输入即可。这样就使得我们的命令行传参有了很大的灵活性
除了--key value外,还可以通过--key=value形式传入

alias(别名)

有时候我们需要输入很多的参数时,会出现这种情况node hello --nama a --age 13 --sex man,过多的 value 和 key,使得可能输入会比较繁琐。我们可以使用 alias 将需要的参数 key 起一个别名

let argv = require('yargs')
    .alias('n', 'name')
    .alias('a', 'age')
    .alias('s', 'sex').argv
console.log(argv)

$ node hello -n dog -a 14 -s man

结果为:

{ _: [],
  n: 'dog',
  name: 'dog',
  a: 14,
  age: 14,
  s: 'man',
  sex: 'man',
  '$0': 'hello' }

有时我们需要对一些参数有特殊要求,比如一些参数是否为必填,有默认值,和一下参数的提示,参数类型为什么等等

我们使用 option 方法,将所有这些配置写进一个对象

let argv = require('yargs').option('n', {
    alias: 'name', // 别名
    demand: true, // 是否必填
    default: 'tom', // 默认值
    describe: 'your name', // 对字段的描述
    type: 'string' // 类型
}).argv
console.log(argv)

yargs 模块提供了一些方法,用于生成帮助信息,可以通过--help 来查看

let argv = require('yargs')
    .option('n', {
        alias: 'name', // 别名
        demand: true, // 是否必填
        default: 'tom', // 默认值
        describe: 'your name', // 对字段的描述
        type: 'string' // 类型
    })
    .usage('Usage: hello [options]') // 用法格式
    .example('hello -n tom') //例子
    .help('h') // 帮助信息
    .epilog('it s my yargs').argv
console.log(argv)

$ node hello -h

Usage: hello [options]

选项:
  --version   显示版本号                                                  [布尔]
  -n, --name  your name                          [字符串] [必需] [默认值: "tom"]
  -h          显示帮助信息                                                [布尔]

示例:
  hello -n tom

it s my yargs

子命令 command

yargs 支持定义多个子命令,我们可能会写多个命令在一个文件,可以通过子命令来实现

require('yargs').command(
    'way1',
    'it is first way',
    function(yargs) {
        yargs.option('n', {
            alias: 'name', // 别名
            demand: true, // 是否必填
            default: 'tom', // 默认值
            describe: 'your name', // 对字段的描述
            type: 'string' // 类型
        })
    },
    function(argv) {
        console.log(argv)
    }
).argv

第一个参数为子命令的名称,第二个参数为命令描述,第三个为 yargs 的配置函数,第四个为处理接受到的参数函数

$ node hello way1 12 3 -n test

{ _: [ 'way1', 12, 3 ], n: 'test', name: 'test', '$0': 'hello' }

也可以通过以下方式,直接 接受子命令的参数

require('yargs').command(
    'way1 <source> [proxy]',
    'it is first way',
    function(yargs) {
        yargs.option('n', {
            alias: 'name', // 别名
            demand: true, // 是否必填
            default: 'tom', // 默认值
            describe: 'your name', // 对字段的描述
            type: 'string' // 类型
        })
    },
    function(argv) {
        console.log(argv)
    }
).argv

// <source> 表示source参数为必填, [proxy] 不是proxy选填

$ node hello way1 1 2 -n test

{ _: [ 'way1' ],
  n: 'test',
  name: 'test',
  '$0': 'hello',
  source: 1,
  proxy: 2 }

如果有太多子命令,也可以通过模块化式来写 yargs

require('yargs').command(require('my-module')).argv

my-module.js

module.exports = {
    command: 'way2',
    describe: 'it is way2',
    builder: function(yargs) {
        yargs.option('n', {
            alias: 'name', // 别名
            demand: true, // 是否必填
            default: 'tom', // 默认值
            describe: 'your name', // 对字段的描述
            type: 'string' // 类型
        })
    },
    handler: function(argv) {
        console.log(argv)
    }
}

$ node hello way2 --name test2

{ _: [ 'way2' ], name: 'test2', n: 'test2', '$0': 'hello' }

yargs 是接受命令行的参数,但是有时候我们需要和 输入的用户进行交互,比如用命令 行生成一个项目,我们需要用户来输入项目名称,或者项目的存放路径。这时候如果让用户直接拼在一条命令行中, 是很不友好的。

Inquirer.js

参数 含义
type 提问的类型
name 存储当前问题回答的变量
message 问题的描述
default 默认值
choices 列表选项
validate 对用户的回答进行校验
filter 对用户的回答进行过滤处理,返回处理后的值
transformer 对用户回答的显示效果进行处理
when 根据前面问题的回答,判断当前问题是否需要被回答
pageSize 渲染行数
prefix 修改message默认前缀
suffix 修改message默认后缀

还是继续写在我们的hello.js中

首先安装inquirer npm install inquirer

const inquirer = require('inquirer');

const promptList = [
  // {
  //   type: 'input',
  //   name: 'name'
  // }
    // 具体交互内容
];

inquirer.prompt(promptList).then(answers => {
    console.log(answers); // 返回的结果
})

type 有 input, confirm, list, rawlist, expand, checkbox, password, editor这些类型

input 用户输入

const inquirer = require('inquirer');

const promptList = [
  {
    type: 'input',
    name: 'name'
  }
];

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})

WX20181228-201642@2x.png

confirm 期望用户输入的Boolean,一般可以when一起使用,作为是否就行下一步

const inquirer = require('inquirer');

const promptList = [{
    type: "confirm",
    message: "是否使用监听?",
    name: "watch",
    prefix: "前缀"
},{
    type: "confirm",
    message: "是否进行文件过滤?",
    name: "filter",
    suffix: "后缀",
    when: function(answers) { // 当watch为true的时候才会提问当前问题
        return answers.watch
    }
}]

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})
WX20181228-202422@2x.png

list 列出可供用户选择的选项,和choices一起使用

const inquirer = require('inquirer');

const promptList = [{
  type: 'list',
  message: '请选择一种水果:',
  name: 'fruit',
  choices: [
      "Apple",
      "Pear",
      "Banana"
  ]
}]

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})

![WX20181228-203132@2x.png](https://upload-images.jianshu.io/upload_images/14717762-a4d2d7e42b3307be.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

rawlist 带序号的选项,用户可通过输入序号来直接选择

const inquirer = require('inquirer');

const promptList = [{
  type: 'rawlist',
  message: '请选择一种水果:',
  name: 'fruit',
  choices: [
      "Apple",
      "Pear",
      "Banana"
  ]
}]

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})

WX20181228-203132@2x.png

expand 可联想的选项

const inquirer = require('inquirer');

const promptList = [{
  type: "expand",
  message: "请选择一种水果:",
  name: "fruit",
  choices: [
      {
          key: "a", // 联想的关键词 必填
          name: "Apple", // 联想显示出来的值 非必填, 如果没有写,联想出来的值为value值
          value: "apple" // 选中后的值 非必填, 如果没有写,选中后的值为name值
      },
      {
          key: "p",
          name: "Pear",
          value: "pear"
      }
  ]
}]

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})
WX20181228-204034@2x.png

checkbox 单选 可以设置默认选项

const promptList = [{
  type: "checkbox",
  message: "选择颜色:",
  name: "color",
  choices: [
      {
          name: "red"
      },
      {
          name: "blur",
          checked: true // 默认选中
      },
      {
          name: "green"
      },
      {
          name: "yellow"
      }
  ]
}];
// 或者下面这样
const promptList = [{
    type: "checkbox",
    message: "选择颜色:",
    name: "color",
    choices: [
        "red",
        "blur",
        "green",
        "yellow"
    ]
}];
WX20181228-204506@2x.png

password 密码类型

const inquirer = require('inquirer');

const promptList = [{
  type: "password", // 密码为密文输入
  message: "请输入密码:",
  name: "pwd"
}];

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})

除了上面列举的这些方法外,还可以通过new inquirer.Separator()添加分隔符,pageSize来设置选项展示行数

const inquirer = require('inquirer');

const promptList = [{
  type: 'rawlist',
  message: '请选择一种水果:',
  name: 'fruit',
  choices: [
      "Apple",
      new inquirer.Separator("--- 分隔符 ---"), // 自定义分隔符
      "Pear",
      new inquirer.Separator(), // 分隔符
      "Banana"
  ],
  pageSize: 2 // 只展示两行
}]

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})

对输入值进行处理和校验

const inquirer = require('inquirer');

const promptList = [{
  type: "input",
  message: "请输入十一位数字",
  name: "num",
  validate: function(val) {
    return /^\d{11}$/.test(val) 
    // val 为用户输入的值,return true会继续下去,return false则会停在该步骤
  }
}];

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})

注意:filter会比validate先执行

const inquirer = require('inquirer');

const promptList = [{
  type: "input",
  message: "请输入十一位数字",
  name: "num",
  filter: function(val) {
    return '0086' + val
  },
  validate: function(val) {
    return /^\d{11}$/.test(val)
}];

inquirer.prompt(promptList).then(answers => {
    console.log(answers);
})

这里如果输入11位数字,是没法继续下去的, 只有输入7位数字才可以。filter和validate的先后顺序没有关系

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容

  • Node.js是目前非常火热的技术,但是它的诞生经历却很奇特。 众所周知,在Netscape设计出JavaScri...
    w_zhuan阅读 3,607评论 2 41
  • 第一章:编译和安装SCons第二章:简单编译第三章:编译相关的一些事情第四章:编译和链接库文件第五章:节点对象第六...
    仙灵儿阅读 11,718评论 0 3
  • 最近睡眠一直不好,已经持续一段时间了,晚上经常多梦,多数是一直处于梦中,导致睡眠质量不高,白天气色不好,身体疲惫...
    星期八_静阅读 289评论 2 1
  • 001 最近忙于年终总结,学习进度拖后了,英语流利说一直没有晋级,要加快进度了,学习之前先复习单词。 002 逐字...
    爱晴海的阳光阅读 226评论 0 0
  • 渐行渐远的记忆(一) 那时候的房子都很矮,站在我家的土墙头上就能看见全村的房子,还有村头的农田…… 没事的我常坐在...
    云在天上飘阅读 472评论 0 0