1.2.0 • Published 6 months ago

nexuscraft-cli v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

nexuscraft-cli

A new CLI generated with oclif

oclif Version Downloads/week

Usage

$ npm install -g nexuscraft-cli
$ nexus COMMAND
running command...
$ nexus (--version)
nexuscraft-cli/1.2.0 darwin-arm64 node-v22.1.0
$ nexus --help [COMMAND]
USAGE
  $ nexus COMMAND
...

Commands

nexus connect

connect to the cloud

USAGE
  $ nexus connect [-s <value>] [-u <value>]

FLAGS
  -s, --secret=<value>    the secret to connect to the cloud
  -u, --username=<value>  the username to connect to the cloud

DESCRIPTION
  connect to the cloud

EXAMPLES
  $ nexus connect --u my-username --s my-secret

See code: src/commands/connect.ts

nexus group create

Create a new group on your cloud

USAGE
  $ nexus group create

DESCRIPTION
  Create a new group on your cloud

EXAMPLES
  $ nexus group create

See code: src/commands/group/create.ts

nexus group delete

delete a group

USAGE
  $ nexus group delete

DESCRIPTION
  delete a group

EXAMPLES
  $ nexus group delete

See code: src/commands/group/delete.ts

nexus group start [GROUPNAME]

describe the command here

USAGE
  $ nexus group start [GROUPNAME]

DESCRIPTION
  describe the command here

EXAMPLES
  $ nexus group start

See code: src/commands/group/start.ts

nexus group stop [FILE]

describe the command here

USAGE
  $ nexus group stop [FILE] [-f] [-n <value>]

ARGUMENTS
  FILE  file to read

FLAGS
  -f, --force
  -n, --name=<value>  name to print

DESCRIPTION
  describe the command here

EXAMPLES
  $ nexus group stop

See code: src/commands/group/stop.ts

nexus groups

list all groups

USAGE
  $ nexus groups

DESCRIPTION
  list all groups

EXAMPLES
  $ nexus groups

See code: src/commands/groups.ts

nexus help [COMMAND]

Display help for nexus.

USAGE
  $ nexus help [COMMAND...] [-n]

ARGUMENTS
  COMMAND...  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for nexus.

See code: @oclif/plugin-help

nexus plugins

List installed plugins.

USAGE
  $ nexus plugins [--json] [--core]

FLAGS
  --core  Show core plugins.

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  List installed plugins.

EXAMPLES
  $ nexus plugins

See code: @oclif/plugin-plugins

nexus plugins add PLUGIN

Installs a plugin into nexus.

USAGE
  $ nexus plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]

ARGUMENTS
  PLUGIN...  Plugin to install.

FLAGS
  -f, --force    Force npm to fetch remote resources even if a local copy exists on disk.
  -h, --help     Show CLI help.
  -s, --silent   Silences npm output.
  -v, --verbose  Show verbose npm output.

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Installs a plugin into nexus.

  Uses npm to install plugins.

  Installation of a user-installed plugin will override a core plugin.

  Use the NEXUS_NPM_LOG_LEVEL environment variable to set the npm loglevel.
  Use the NEXUS_NPM_REGISTRY environment variable to set the npm registry.

ALIASES
  $ nexus plugins add

EXAMPLES
  Install a plugin from npm registry.

    $ nexus plugins add myplugin

  Install a plugin from a github url.

    $ nexus plugins add https://github.com/someuser/someplugin

  Install a plugin from a github slug.

    $ nexus plugins add someuser/someplugin

nexus plugins:inspect PLUGIN...

Displays installation properties of a plugin.

USAGE
  $ nexus plugins inspect PLUGIN...

ARGUMENTS
  PLUGIN...  [default: .] Plugin to inspect.

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Displays installation properties of a plugin.

EXAMPLES
  $ nexus plugins inspect myplugin

See code: @oclif/plugin-plugins

nexus plugins install PLUGIN

Installs a plugin into nexus.

USAGE
  $ nexus plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]

ARGUMENTS
  PLUGIN...  Plugin to install.

FLAGS
  -f, --force    Force npm to fetch remote resources even if a local copy exists on disk.
  -h, --help     Show CLI help.
  -s, --silent   Silences npm output.
  -v, --verbose  Show verbose npm output.

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Installs a plugin into nexus.

  Uses npm to install plugins.

  Installation of a user-installed plugin will override a core plugin.

  Use the NEXUS_NPM_LOG_LEVEL environment variable to set the npm loglevel.
  Use the NEXUS_NPM_REGISTRY environment variable to set the npm registry.

ALIASES
  $ nexus plugins add

EXAMPLES
  Install a plugin from npm registry.

    $ nexus plugins install myplugin

  Install a plugin from a github url.

    $ nexus plugins install https://github.com/someuser/someplugin

  Install a plugin from a github slug.

    $ nexus plugins install someuser/someplugin

See code: @oclif/plugin-plugins

nexus plugins link PATH

Links a plugin into the CLI for development.

USAGE
  $ nexus plugins link PATH [-h] [--install] [-v]

ARGUMENTS
  PATH  [default: .] path to plugin

FLAGS
  -h, --help          Show CLI help.
  -v, --verbose
      --[no-]install  Install dependencies after linking the plugin.

DESCRIPTION
  Links a plugin into the CLI for development.

  Installation of a linked plugin will override a user-installed or core plugin.

  e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
  command will override the user-installed or core plugin implementation. This is useful for development work.


EXAMPLES
  $ nexus plugins link myplugin

See code: @oclif/plugin-plugins

nexus plugins remove [PLUGIN]

Removes a plugin from the CLI.

USAGE
  $ nexus plugins remove [PLUGIN...] [-h] [-v]

ARGUMENTS
  PLUGIN...  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ nexus plugins unlink
  $ nexus plugins remove

EXAMPLES
  $ nexus plugins remove myplugin

nexus plugins reset

Remove all user-installed and linked plugins.

USAGE
  $ nexus plugins reset [--hard] [--reinstall]

FLAGS
  --hard       Delete node_modules and package manager related files in addition to uninstalling plugins.
  --reinstall  Reinstall all plugins after uninstalling.

See code: @oclif/plugin-plugins

nexus plugins uninstall [PLUGIN]

Removes a plugin from the CLI.

USAGE
  $ nexus plugins uninstall [PLUGIN...] [-h] [-v]

ARGUMENTS
  PLUGIN...  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ nexus plugins unlink
  $ nexus plugins remove

EXAMPLES
  $ nexus plugins uninstall myplugin

See code: @oclif/plugin-plugins

nexus plugins unlink [PLUGIN]

Removes a plugin from the CLI.

USAGE
  $ nexus plugins unlink [PLUGIN...] [-h] [-v]

ARGUMENTS
  PLUGIN...  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ nexus plugins unlink
  $ nexus plugins remove

EXAMPLES
  $ nexus plugins unlink myplugin

nexus plugins update

Update installed plugins.

USAGE
  $ nexus plugins update [-h] [-v]

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Update installed plugins.

See code: @oclif/plugin-plugins

nexus server start [FILE]

describe the command here

USAGE
  $ nexus server start [FILE] [-f] [-n <value>]

ARGUMENTS
  FILE  file to read

FLAGS
  -f, --force
  -n, --name=<value>  name to print

DESCRIPTION
  describe the command here

EXAMPLES
  $ nexus server start

See code: src/commands/server/start.ts

nexus server stop [FILE]

describe the command here

USAGE
  $ nexus server stop [FILE] [-f] [-n <value>]

ARGUMENTS
  FILE  file to read

FLAGS
  -f, --force
  -n, --name=<value>  name to print

DESCRIPTION
  describe the command here

EXAMPLES
  $ nexus server stop

See code: src/commands/server/stop.ts

nexus servers

list all servers

USAGE
  $ nexus servers

DESCRIPTION
  list all servers

EXAMPLES
  $ nexus servers

See code: src/commands/servers.ts

nexus setup

setup a new network

USAGE
  $ nexus setup [-a] [-l <value>] [-n <value>] [--ram <value>] [-t <value>]

FLAGS
  -a, --autoUpdate    auto update the cli
  -l, --lang=<value>  language for the cli
  -n, --name=<value>  name of the network
  -t, --type=<value>  type of the network
      --ram=<value>   ram for the network

DESCRIPTION
  setup a new network

EXAMPLES
  $ nexus setup

See code: src/commands/setup.ts