You will need to install git onto your computer, these instructions will depend heavily on what OS you run. After running these commands, you can move on to the next step in the same terminal.
## Downloading and compiling the Electron app locally
Download and install the latest version of [Node.js v14](https://nodejs.org/en/download/) and then run the following commands. This approach will use the precompiled Go WASM binary, if you'd like you can compile it yourself using the Go instructions below **before running these**.
```
npm install
npm run-script build
npm run-script start:electron
```
## Compiling the Go WASM binary blob
You will need to [install Go](https://golang.org/doc/install) onto your system, and then run the following commands. Then, go back up to the Electron instructions and run those.