For utils client, the npm package can instead of https://utils.men
$ npm install -g @contributionls/utils-cli
$ utils-cli COMMAND
running command...
$ utils-cli (-v|--version|version)
@contributionls/utils-cli/0.0.1 darwin-x64 node-v10.17.0
$ utils-cli --help [COMMAND]
USAGE
$ utils-cli COMMAND
...const {merge, template, jsonpath, convert} = require('@contributionls/utils-cli')
const url1 = merge(['https://google.com','https://hp.com'])
console.log('url1',url)merge(urls,sourceFileType)
sourceFileType, optional, specific the urls source file type, if not specific, it will auto detect the url's file type, value could beini,yaml,json
template(url,template,sourceFileType)
sousourceFileTyperce, optional, specific the urls source file type, if not specific, it will auto detect the url's file type, value could beini,yaml,json
convert(url,destFileType,sourceFileType)
jsonpath(url,jsonpath,sourceFileType)
sourceFileType, optional, specific the urls source file type, if not specific, it will auto detect the url's file type, value could beini,yaml,json
utils-cli convertutils-cli helloutils-cli help [COMMAND]utils-cli jsonpathutils-cli mergeutils-cli template
Convert config url type
USAGE
$ utils-cli convert
OPTIONS
-d, --dest=ini|yaml|json (required) specific the url dest file type, value could be 'ini', 'yaml', 'json'
-s, --source=ini|yaml|json optional, specific the urls source file type, if not specific, it will auto detect the
url's file type, value could be 'ini', 'yaml', 'json'
-u, --url=url (required) need to convert url
DESCRIPTION
...
Extra documentation goes here
https://utils.men/
See code: src/commands/convert.js
Describe the command here
USAGE
$ utils-cli hello
OPTIONS
-n, --name=name name to print
DESCRIPTION
...
Extra documentation goes here
See code: src/commands/hello.js
display help for utils-cli
USAGE
$ utils-cli help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
See code: @oclif/plugin-help
Jsonpath config url type
USAGE
$ utils-cli jsonpath
OPTIONS
-j, --jsonpath=jsonpath (required) specific the jsonpath
-s, --source=ini|yaml|json optional, specific the urls source file type, if not specific, it will auto detect the
url's file type, value could be 'ini', 'yaml', 'json'
-u, --url=url (required) need to convert url
DESCRIPTION
...
Extra documentation goes here
https://utils.men/
See code: src/commands/jsonpath.js
Merge config url
USAGE
$ utils-cli merge
OPTIONS
-s, --source=ini|yaml|json optional, specific the urls source file type, if not specific, it will auto detect the
url's file type, value could be 'ini', 'yaml', 'json'
-u, --url=url (required) need to merge url, you can pass this flag multiple
DESCRIPTION
...
Extra documentation goes here
https://utils.men/
See code: src/commands/merge.js
Template config url type
USAGE
$ utils-cli template
OPTIONS
-s, --source=ini|yaml|json optional, specific the urls source file type, if not specific, it will auto detect the
url's file type, value could be 'ini', 'yaml', 'json'
-t, --template=template (required) specific the template
-u, --url=url (required) need to convert url
DESCRIPTION
...
Extra documentation goes here
https://utils.men/
See code: src/commands/template.js