大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
一、创建一个命令模块
1、package.json
我们提供的服务有:成都网站制作、网站建设、微信公众号开发、网站优化、网站认证、确山ssl等。为成百上千企事业单位解决了网站和推广的问题。提供周到的售前咨询和贴心的售后服务,是有科学管理、有技术的确山网站制作公司
{
"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进行全局注册后,即可在命令行窗口直接使用该命令
2、在其它模块中的package.json中引用命令模块,并增加scripts
"scripts": {
"artisan": "artisan"
},
"dependencies": {
......
"@uad/nat-cli": "^0.0.2",
......
}
增加对命令模块的依赖后,执行npm install后,会在node_modules/.bin目录下生成命令的快捷方式,在scripts中即可使用。
命令执行方法如下:
npm run artisan -- -h
或
npx artisan -h
Usage: hello [options]
命令:
artisan morning good morning
选项:
--version 显示版本号 [布尔]
-n, --name your name [字符串] [必需] [默认值: "tom"]
-h, --help 显示帮助信息 [布尔]
示例:
hello -n tom say hello to Tom
Copyright 2019.