Devtools
Last updated
Last updated
For the best experience you should install the extension. This will allow you to work on your application without leaving the IDE at all.
Alternatively you can install the standalone application of the devtools. You can start it with the NPM executor as:
You can also install the devtools with your project, allowing you to lock a specific version of the devtools to your project:
When you create your application it will automatically connect through localhost:3031, meaning that everything should just work out of the box. If you need to change the port, connect the application over a network (mobile development) or similar, you can configure how the application connects:
ChromeOS does not expose localhost as normal. That means you need to connect with penguin.termina.linux.test:3031, or you can use the following plugin to forward localhost:
Typically you add this, here showing with React:
Though you can also manually only update Overmind by:
With the package you can start the devtools as you start your build process:
A popular concept introduced by Webpack is . It allows you to make changes to your code without having to refresh. Overmind automatically supports HMR. That means when HMR is activated Overmind will make sure it updates and manages its state, actions and effects. Even the devtools will be updated as you make changes.