@hammerhq/cli-tool
Version:
✨ A simple CLI commander system
133 lines (103 loc) • 4.22 kB
Markdown
<p align="center">
<img src="https://avatars.githubusercontent.com/u/109850261" alt="Logo" width="160" height="160" />
<h3 align="center">Hammer Framework CLI Tool Package</h3>
<p align="center">
✨ A simple CLI commander system
<br />
<a href="https://338.rocks/discord"><strong>Get support »</strong></a>
<br />
<br />
<a href="https://github.com/TheHammerHQ/issues">Report Bug</a>
·
<a href="https://hammer.338.rocks/docs/packages/logger">Documentation</a>
</p>
</p>
```bash
$ npm install @hammerhq/cli-tool
```
```ts
tool
.createCommand(ICommand, callback(commandName, args) => unknown) // create command
.createCommand(ICommand, callback(commandName, args) => unknown) // create another command
.help() // If none of the above commands are used, execute the help command.
```
- `ICommand`: Where command is defined to be used when separating arguments. Structure:
```js
{
name: "test", // Command name
usage: "--message <your_message>", // Command usage
example: [ "--message Hello, world!", "-m Test message" ], // Usage examples
category: "test", // Command category
aliases: [ "t" ], // Command aliases
description: "just a test command", // Command description
argDefinitions: {
// Arg definitions
"--message": String,
// Alias definition
"-m": "--message"
} // Arg definitions (Learn about IHargsOptionDefinition below)
}
```
- `IHargsOptionDefinition`: Where options are defined to be used when separating arguments. Structure:
```ts
type TArgName = `--${string}`;
type TAliasName = `-${string}`;
interface IHargsOptionDefinition {
[]: typeof key extends TArgName
? Function | [Function]
: TArgName;
}
```
- `callback(commandName, args) => unknown`: If the command you set is used, the action to be applied. Example:
```js
tool.createCommand(ICommand, (commandName, args) => {
// callback(commandName, args) ⬇️
console.log("You used", commandName, "command with arguments", args);
});
```
```js
import { tool } from "@hammerhq/cli-tool";
tool
.createCommand({
name: "install",
usage: "-m <module_name> [--version] <package_version>",
example: [ "--module tool", "-m hargs --version 1.0.1" ],
category: "utility",
aliases: [ "i", "add" ],
description: "Install packages from server",
argDefinitions: {
"--module": String,
"--version": String,
"-m": "--module",
"-v": "--version"
}
}, (commandName, args) => {
const module = args["--module"];
const version = args["--version"];
console.log("You have downloaded package", module, "with version" version ? version : "latest");
})
.help()
```
We are looking for contributors to actively work on Hammer and to contribute to the repos. There is still lots of work to do. If you are interested in contributing, please join our [Discord server](https://338.rocks/discord). (There will be a surprise for early contributors!)
Copyright © 2023 [Barış DEMİRCİ](https://github.com/barbarbar338).
Distributed under the [GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.html) License. See `LICENSE` for more information.
This repo is open for
1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/my-feature`)
3. Run prettier (`npm run format`)
4. Commit your Changes (`git commit -m 'my awesome feature my-feature'`)
5. Push to the Branch (`git push origin feature/my-feature`)
6. Open a Pull Request
# ⭐️ Show your support
Give a ⭐️ if this project helped you!
# ☎️ Contact
- Mail: hammer@338.rocks
- Discord: https://338.rocks/discord
- Website: https://hammer.338.rocks
- Documentation: https://hammer.338.rocks/docs/packages/cli-tool