This project was bootstrapped with Create React App. We ejected to be able to customize the build process.
This is a Chrome extension.
yarn build
: generate the production buildyarn extension
: generate the development build
React and Redux provide devtools that connect to your application and let you check the state, investigate events, etc.
These won't connect immediately to the chrome extension. Some setup is required.
First install the local servers:
npm install -g remotedev-server
: local server for redux debuggingnpm install -g react-devtools
: local server for react debugging
Start them:
remotedev --hostname=localhost --port=8096
: server for remote reduxreact-devtools
: react devtool local
Back on your browser, the app should connect immediately to the react devtools.
For redux,
- right click on the extension icon, "open remote Devtools"
- "settings", custom server,
- use "localhost" and port "8096"
It should connect too.