diff --git a/docs/index.md b/docs/index.md index a7ee866..9fe9322 100644 --- a/docs/index.md +++ b/docs/index.md @@ -23,44 +23,7 @@ nodejs wrapper for CLI related tasks ## Usage -this plugin tries to establish some logic in which CLI tools work. -take the following commandline input: - -``` -mytool command argument1 argument2 --option1 -o2 option2Value -``` - -- `mytool` obviously is the tool (like git) -- `command` is the main thing the tool shall do (like commit) -- `argument1` and `argument2` are arguments -- `option1` is a longform option you can add (like --message for message) -- `optionValue` is the referenced option value (like a commit message) - -When there is no command and no option specified the standardTask applied. -When there is a option specified but no command, standardTask applies, -except when of the options is -v, --version or --help. - -```javascript -import { Smartcli } from 'smartcli'; -mySmartcli = new Smartcli(); -mySmartcli.standardTask().then(argvArg => { - // do something if program is called without an command -}); - -mySmartcli.addCommand({ commandname: 'install' }).then(argvArg => { - // do something if program is called with command "install" -}); - -mySmartcli.addVersion('1.0.0'); // -v and --version options will display the specified version in the terminal - -mySmartCli.addHelp({ - // is triggered by help command and --help option - helpText: 'some help text to print' // the helpText to display -}); - -mySmartcli.startParse(); // starts the evaluation and fullfills or rejects promises. -``` For further information read the linked docs at the top of this README. diff --git a/package.json b/package.json index 2a16f31..cef9edb 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@pushrocks/smartcli", "private": false, "version": "3.0.8", - "description": "nodejs wrapper for CLI related tasks", + "description": "easy observable cli tasks", "main": "dist/index.js", "typings": "dist/index.d.ts", "scripts": { diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..f56c320 --- /dev/null +++ b/readme.md @@ -0,0 +1,69 @@ +# @pushrocks/smartcli +easy observable cli tasks + +## Availabililty and Links +* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smartcli) +* [gitlab.com (source)](https://gitlab.com/pushrocks/smartcli) +* [github.com (source mirror)](https://github.com/pushrocks/smartcli) +* [docs (typedoc)](https://pushrocks.gitlab.io/smartcli/) + +## Status for master +[![pipeline status](https://gitlab.com/pushrocks/smartcli/badges/master/pipeline.svg)](https://gitlab.com/pushrocks/smartcli/commits/master) +[![coverage report](https://gitlab.com/pushrocks/smartcli/badges/master/coverage.svg)](https://gitlab.com/pushrocks/smartcli/commits/master) +[![npm downloads per month](https://img.shields.io/npm/dm/@pushrocks/smartcli.svg)](https://www.npmjs.com/package/@pushrocks/smartcli) +[![Known Vulnerabilities](https://snyk.io/test/npm/@pushrocks/smartcli/badge.svg)](https://snyk.io/test/npm/@pushrocks/smartcli) +[![TypeScript](https://img.shields.io/badge/TypeScript->=%203.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/) +[![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/) +[![JavaScript Style Guide](https://img.shields.io/badge/code%20style-prettier-ff69b4.svg)](https://prettier.io/) + +## Usage + +this plugin tries to establish some logic in which CLI tools work. + +take the following commandline input: + +``` +mytool command argument1 argument2 --option1 -o2 option2Value +``` + +- `mytool` obviously is the tool (like git) +- `command` is the main thing the tool shall do (like commit) +- `argument1` and `argument2` are arguments +- `option1` is a longform option you can add (like --message for message) +- `optionValue` is the referenced option value (like a commit message) + +When there is no command and no option specified the standardTask applied. +When there is a option specified but no command, standardTask applies, +except when of the options is -v, --version or --help. + +```javascript +import { Smartcli } from 'smartcli'; +mySmartcli = new Smartcli(); +mySmartcli.standardTask().then(argvArg => { + // do something if program is called without an command +}); + +mySmartcli.addCommand({ commandname: 'install' }).then(argvArg => { + // do something if program is called with command "install" +}); + +mySmartcli.addVersion('1.0.0'); // -v and --version options will display the specified version in the terminal + +mySmartCli.addHelp({ + // is triggered by help command and --help option + helpText: 'some help text to print' // the helpText to display +}); + +mySmartcli.startParse(); // starts the evaluation and fullfills or rejects promises. +``` + +## Contribution + +We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :) + +For further information read the linked docs at the top of this readme. + +> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh) +| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy) + +[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com)