@parity/electron
Control the Parity Ethereum client from electron.
Description
With this library, you will be able, from Electron, to:
- download Parity Ethereum locally in Electron's user data folder.
- run/stop/check if Parity Ethereum is running.
- get a secure token from Parity Ethereum to access secure RPCs.
Getting Started
yarn add @parity/electron
Usage
import parityElectron, { isParityRunning } from '@parity/electron';
parityElectron({
logger: myCustomLoggerFunction
})
isParityRunning()
.then(() => ...);