Quick Start

This article guide you to develop a simple app with GUI in electron that helps user to communicate with cluster via rabbitmq.

Prerequisites

Option 3 — Installing Node Using the Node Version Manager

My recommended way of installing Node.js is particularly flexible is to use nvm, the Node Version Manager.
Before piping the command through to bash, it is always a good idea to audit the script to make sure it isn’t doing anything you don’t agree with. You can do that by removing the | bash segment at the end of the curl command:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh

The URL corresponds to the latest version of nvm. Then the script can be downloaded and executed by typing:

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash

To enable this change, run:

source ~/.bashrc

to be continue ...