1.0.10-alpha.0 • Published 5 years ago

bpl-cli v1.0.10-alpha.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

bpl-node-manager

Pluggable Blockpool Node Manager

oclif Version Downloads/week License

Usage

$ npm install -g bpl-cli
$ bpl COMMAND
running command...
$ bpl (-v|--version|version)
bpl-cli/1.0.10-alpha.0 darwin-x64 node-v11.13.0
$ bpl --help [COMMAND]
USAGE
  $ bpl COMMAND
...

Commands

bpl autocomplete [SHELL]

display autocomplete installation instructions

USAGE
  $ bpl autocomplete [SHELL]

ARGUMENTS
  SHELL  shell type

OPTIONS
  -r, --refresh-cache  Refresh cache (ignores displaying instructions)

EXAMPLES
  $ bpl autocomplete
  $ bpl autocomplete bash
  $ bpl autocomplete zsh
  $ bpl autocomplete --refresh-cache

See code: @oclif/plugin-autocomplete

bpl hello

USAGE
  $ bpl hello

bpl help [COMMAND]

display help for bpl

USAGE
  $ bpl help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

bpl plugins

list installed plugins

USAGE
  $ bpl plugins

OPTIONS
  --core  show core plugins

EXAMPLE
  $ bpl plugins

See code: @toucansam-bpl/plugin-plugins

bpl plugins:install PLUGIN...

installs a plugin into the CLI

USAGE
  $ bpl plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  plugin to install

OPTIONS
  -f, --force    yarn install with force flag
  -h, --help     show CLI help
  -v, --verbose

DESCRIPTION
  Can be installed from npm or a git url.

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

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command 
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in 
  the CLI without the need to patch and update the whole CLI.

ALIASES
  $ bpl plugins:add

EXAMPLES
  $ bpl plugins:install myplugin 
  $ bpl plugins:install https://github.com/someuser/someplugin
  $ bpl plugins:install someuser/someplugin

See code: @toucansam-bpl/plugin-plugins

bpl plugins:link PLUGIN

links a plugin into the CLI for development

USAGE
  $ bpl plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

DESCRIPTION
  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.

EXAMPLE
  $ bpl plugins:link myplugin

See code: @toucansam-bpl/plugin-plugins

bpl plugins:uninstall PLUGIN...

removes a plugin from the CLI

USAGE
  $ bpl plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

ALIASES
  $ bpl plugins:unlink
  $ bpl plugins:remove

See code: @toucansam-bpl/plugin-plugins

bpl plugins:update

update installed plugins

USAGE
  $ bpl plugins:update

OPTIONS
  -h, --help     show CLI help
  -v, --verbose

See code: @toucansam-bpl/plugin-plugins