1、建立一個命令模塊 一、package.jsonnode
{ "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" } }
二、src/artisan.jsgit
#!/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._);
2、使用方法 一、將命令模塊經過npm link進行全局註冊後,便可在命令行窗口直接使用該命令 二、在其它模塊中的package.json中引用命令模塊,並增長scriptsshell
"scripts": { "artisan": "artisan" }, "dependencies": { ...... "@uad/nat-cli": "^0.0.2", ...... }
增長對命令模塊的依賴後,執行npm install後,會在node_modules/.bin目錄下生成命令的快捷方式,在scripts中便可使用。 命令執行方法以下:npm
npm run artisan -- -h
或json
npx artisan -h Usage: hello [options]
命令:ide
artisan morning good morning
選項: --version 顯示版本號 [布爾] -n, --name your name [字符串] [必需] [默認值: "tom"] -h, --help 顯示幫助信息 [布爾]ui
示例:命令行
hello -n tom say hello to Tom Copyright 2019.