This CLI app is a collection of utilities for application programmers who create decentralized games powered by Libplanet.
npm install @planetarium/cliplanet: Libplanet CLI Tools
=============================
[![npm][npm-badge]][npm]
[![NuGet][nuget-badge]][NuGet]
[![NuGet (prerelease)][nuget-prerelease-badge]][NuGet]
This CLI app is a collection of utilities for application programmers who
create decentralized games powered by [Libplanet].
[npm]: https://www.npmjs.com/package/@planetarium/cli
[npm-badge]: https://img.shields.io/npm/v/@planetarium/cli
[NuGet]: https://www.nuget.org/packages/Libplanet.Tools/
[nuget-badge]: https://img.shields.io/nuget/v/Libplanet.Tools.svg?style=flat
[nuget-prerelease-badge]: https://img.shields.io/nuget/vpre/Libplanet.Tools.svg?style=flat
[Libplanet]: https://libplanet.io/
Installation
------------
There are multiple ways to install the planet command. Pick the most handy
one for you.
Install as an npm package if npm is installed on your system:
~~~~ bash
npm install @planetarium/cli
~~~~
Install as a [.NET Core tool] if .NET Core SDK is installed on your system:
~~~~ bash
dotnet tool install -g Libplanet.Tools
~~~~
[.NET Core tool]: https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools
Or you could just download an executable binary for your platform from
the [releases page]: planet-\-{linux,osx,win}-{x64, arm64}.{tar.xz,zip}* files are
CLI tools. Linux (x64), macOS (x64, arm64), and Windows (x64) are supported.
Extract the binary to an appropriate directory in your PATH.
[releases page]: https://github.com/planetarium/libplanet/releases
[releases-badge]: https://img.shields.io/github/v/release/planetarium/libplanet?sort=semver
Usage
-----
~~~~ bash
planet --help
~~~~
If you installed it using npm without -g/--global option
use npx planet command instead:
~~~~ bash
npx planet --help
~~~~
Or if you installed it using .NET Core SDK without -g/--global option
use dotnet planet command instead:
~~~~ bash
dotnet planet --help
~~~~
All subcommands and options can be completed in bash and zsh. You can
configure command-line completion through --completion option.
For bash:
~~~~ bash
source <(planet --completion bash)
~~~~
For zsh:
~~~~ zsh
planet --completion zsh > ~/.zsh/functions
~~~~