Minimal Go React Redux template
- Install GoLang
- Install NPM
- Install WebPack via npm
npm install webpack -g
- Build by npm
npm i
- Build GoLang sources
go build
- Start webpack
webpack
or webpak with watchmode, Webpack will watch your files and when one of them changes, it will immediately rerun the build and recreate your output file.
webpack --watch
when you run the webpack watch command, webpack will rebuild your bundle when any of your files change (jsx).
- Run the server
./go-react-redux-template
- Open browser
localhost:8100
MIT.