gulp經常使用插件之yargs使用

更多gulp經常使用插件使用請訪問:gulp經常使用插件彙總html


yargs這是一款經過解析參數並生成優雅的用戶界面來幫助您構建交互式命令行工具。處理命令行參數的通用解決方案,只要一句代碼 var args = require('yargs').argv;就可讓命令行的參數都放在變量args上,能夠根據參數判斷是測試環境仍是正式環境。node

更多使用文檔請點擊訪問yargs工具官網npm

安裝

npm install --save yargs

使用

  • 單字符的簡單參數,如傳入-m=5或-m 5,則可獲得args.m = 5
  • 多字符參數(必須使用雙連字符),如傳入--test=5或--test 5,則可獲得args.test = 5。
  • 不帶值的參數,如傳入--production,則會被認爲是布爾類型的參數,可獲得args.production = true。

簡單的例子:gulp

#!/usr/bin/env node
const argv = require('yargs').argv

if (argv.ships > 3 && argv.distance < 53.5) {
  console.log('Plunder more riffiwobbles!')
} else {
  console.log('Retreat from the xupptumblers!')
}

輸出結果:工具

$ ./plunder.js --ships=4 --distance=22
Plunder more riffiwobbles!

$ ./plunder.js --ships 12 --distance 98.7
Retreat from the xupptumblers!

複雜的例子:測試

#!/usr/bin/env node
require('yargs') // eslint-disable-line
  .command('serve [port]', 'start the server', (yargs) => {
    yargs
      .positional('port', {
        describe: 'port to bind on',
        default: 5000
      })
  }, (argv) => {
    if (argv.verbose) console.info(`start server on :${argv.port}`)
    serve(argv.port)
  })
  .option('verbose', {
    alias: 'v',
    type: 'boolean',
    description: 'Run with verbose logging'
  })
  .argv

運行上面的示例 --help 以查看應用程序的幫助。ui

相關文章
相關標籤/搜索