diff --git a/README.md b/README.md index 3d1b9134..2f3f6212 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ Bitcore includes a Command Line Interface (CLI) for managing, configuring and in ```bash bitcore-node create -d mynode cd mynode -bitcore-node add -bitcore-node add https://github.com/yourname/helloworld +bitcore-node install +bitcore-node install https://github.com/yourname/helloworld ``` This will create a directory with configuration files for your node and install the necessary dependencies. For more information about (and developing) services, please see the [Service Documentation](docs/services.md). diff --git a/docs/index.md b/docs/index.md index 7d87ebbe..7bea1785 100644 --- a/docs/index.md +++ b/docs/index.md @@ -6,8 +6,8 @@ A Bitcoin full node for building applications and services with Node.js. A node ## Install ```bash -npm install -g bitcore -bitcore start +npm install -g bitcore-node +bitcore-node start ``` Note: For your convenience, we distribute binaries for x86_64 Linux and x86_64 Mac OS X. Upon npm install, the binaries for your platform will be downloaded. For more detailed installation instructions, or if you want to compile the project yourself, then please see the [Build & Install](build.md) documentation to build the project from source. @@ -24,10 +24,10 @@ Note: For your convenience, we distribute binaries for x86_64 Linux and x86_64 M Bitcore includes a Command Line Interface (CLI) for managing, configuring and interfacing with your Bitcore Node. ```bash -bitcore create -d mynode +bitcore-node create -d mynode cd mynode -bitcore install -bitcore install https://github.com/yourname/helloworld +bitcore-node install +bitcore-node install https://github.com/yourname/helloworld ``` This will create a directory with configuration files for your node and install the necessary dependencies. For more information about (and developing) services, please see the [Service Documentation](services.md). diff --git a/lib/cli/main.js b/lib/cli/main.js index 07a92671..4cb76041 100644 --- a/lib/cli/main.js +++ b/lib/cli/main.js @@ -67,7 +67,6 @@ function main(servicesPath, additionalServices) { program .command('install ') - .alias('add') .description('Install a service for the current node') .action(function(services){ var configInfo = findConfig(process.cwd()); @@ -94,7 +93,6 @@ function main(servicesPath, additionalServices) { program .command('uninstall ') - .alias('remove') .description('Uninstall a service for the current node') .action(function(services){ var configInfo = findConfig(process.cwd());