Update BTC RPC Explorer

Update BTC RPC Explorer to newer versions.

For more details and context on this process, refer to the installation step.

Fetch the latest changes:

cd ~/btc-rpc-explorer
git fetch --all

Show the latest version tags:

git describe --tags `git rev-list --tags --max-count=20`

Switch to the latest stable version:

git checkout -f <version-tag>

Stop BTC RPC Explorer:

sudo systemctl stop btc-rpc-explorer.service

Update the dependencies:

npm update

Install the updates:

npm install

Once it's done, you can start BTC RPC Explorer again:

sudo systemctl start btc-rpc-explorer.service

Last updated

Was this helpful?