December 2018
Intermediate to advanced
642 pages
15h 5m
English
We want to install and configure all the necessary tools for debugging. Let's do that in this section. The key tool for debugging will be electron-devtools-installer, which you can get from https://github.com/MarshallOfSound/electron-devtools-installer. We'll install it, as well as the Redux Devtools extension we used before, with a simple command:
npm install electron-devtools-installer redux-devtools-extension --save-dev
To use the Redux Devtools, we'll have to start by fixing the store, as we did earlier; nothing new here:
// Source file: src/regionsApp/store.with.redux.devtools.js/* @flow */import { createStore, applyMiddleware } from "redux";import { composeWithDevTools } from "redux-devtools-extension";import thunk from ...Read now
Unlock full access