This is a desktop tray app build with Electron. It allows you to start the kevlar light client, integrate it with your Metamask wallet and view the logs.
-
Install Dependencies:
Ensure you have Node.js, tsc typescript compiler, and Yarn installed. Then, run the following command to install the necessary dependencies:yarn
-
Start the Development Server:
To start the app in development mode, use:yarn dev
This will launch the app in a new tray icon in your system tray.
-
Package for Different Operating Systems:
Use the following commands to build the app for different operating systems:-
Windows:
yarn dist:win
-
macOS:
yarn dist:mac
-
Linux:
yarn dist:linux
These commands will generate the respective installers for each OS in the
dist
directory. -