Devtools
VS Code

Standalone app
Connecting from the application
Connecting on Chromebook
Hot Module Replacement
Last updated
npx overmind-devtools@latestnpm install overmind-devtoolsnpm install overmind-devtools concurrently{
...
"scripts": {
"start": "concurrently \"overmind-devtools\" \"someBuildTool\""
},
...
}import { createOvermind } from 'overmind'
import { config } from './overmind'
const overmind = createOvermind(config, {
devtools: '10.0.0.1:3031'
})import React from 'react'
import { render } from 'react-dom'
import { createOvermind } from 'overmind'
import { Provider } from 'overmind-react'
import { config } from './overmind'
import { App } from './components/App'
const overmind = createOvermind(config)
render(<Provider value={overmind}><App /></Provider>, document.querySelector('#app'))
// Allows this module to run again without refresh,
// meaning "createOvermind" runs again and automatically
// reconfigures
if (module.hot) {
module.hot.accept()
}import React from 'react'
import { render } from 'react-dom'
import { overmind } from './overmindInstance'
import { Provider } from 'overmind-react'
import { App } from './components/App'
render(<Provider value={overmind}><App /></Provider>, document.querySelector('#app'))
import { createOvermind } from 'overmind'
import { config } from './overmind'
export const overmind = createOvermind(config)
// When this module runs again "createOvermind" is run
// and it automatically reconfigures
if (module.hot) {
module.hot.accept()
}