An open API service indexing awesome lists of open source software.

https://github.com/raboro/kgv-cli

CLI tool for calculating kgV for multiple values, also a npm package
https://github.com/raboro/kgv-cli

cli npm npm-package

Last synced: 3 months ago
JSON representation

CLI tool for calculating kgV for multiple values, also a npm package

Awesome Lists containing this project

README

        

# kgV-CLI

[![npm downloads](https://img.shields.io/npm/dt/@raboro/kgv.svg)](https://www.npmjs.com/package/@raboro/kgv)

CLI tool to calculate kgV for multiple values

## Instruction guide

#### If you install via npm:
1. Install package
````bash
$ npm i @raboro/kgv
````
2. Go inside node_modules/@raboro/kgv and link to use it globally
````bash
$ npm link
````
Then use it like below

#### If you install via cloning the repo:

1. Install [node.js](https://nodejs.org/en/download/) with npm
2. Clone code
3. After collecting the source code load dependencies with
```bash
$ npm install
```

4. Link project to use the CLI tool globally
````bash
$ npm link
````

5. Run the CLI tool with
````bash
$ kgv
````

e.g.:
````bash
kgv 12 5 3 4 7
420
````