一、創(chuàng)建一個(gè)命令模塊
1、package.json
{
"name": "@uad/nat-cli",
"version": "0.0.2",
"description": "Demo",
"main": "index.js",
"bin": {
"artisan": "./src/artisan.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git"
},
"keywords": [
"CLI"
],
"author": "chunrong.liu",
"license": "ISC",
"dependencies": {
"shelljs": "^0.8.3",
"yargs": "^13.2.4"
}
}
2、src/artisan.js
#!/usr/bin/env node
require('shelljs/global');
var argv = require('yargs')
.option('n', {
alias : 'name',
demand: true,
default: 'tom',
describe: 'your name',
type: 'string'
})
.usage('Usage: hello [options]')
.example('hello -n tom', 'say hello to Tom')
.help('h')
.alias('h', 'help')
.epilog('Copyright 2019')
.command("morning", "good morning", function (yargs) {
echo("Good Morning");
var argv = yargs.reset()
.option("m", {
alias: "message",
description: "provide any sentence"
})
.help("h")
.alias("h", "help")
.argv;
echo(argv.m);
})
.argv;
console.log('hello ', argv.n);
console.log(argv._);
二、使用方法
1、將命令模塊通過npm link進(jìn)行全局注冊后,即可在命令行窗口直接使用該命令
2、在其它模塊中的package.json中引用命令模塊,并增加scripts
"scripts": {
"artisan": "artisan"
},
"dependencies": {
......
"@uad/nat-cli": "^0.0.2",
......
}
增加對命令模塊的依賴后,執(zhí)行npm install后,會(huì)在node_modules/.bin目錄下生成命令的快捷方式,在scripts中即可使用。
命令執(zhí)行方法如下:
npm run artisan -- -h
或
npx artisan -h
Usage: hello [options]
命令:
artisan morning good morning
選項(xiàng):
--version 顯示版本號 [布爾]
-n, --name your name [字符串] [必需] [默認(rèn)值: "tom"]
-h, --help 顯示幫助信息 [布爾]
示例:
hello -n tom say hello to Tom
Copyright 2019.
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。