I start learning webpack , node , and react and I am bit confused about some basic staff.
Does webpack bundle whole react.js + my javascript files into one output file, so when deploying to production I don't need to install node packages used in project (assuming that they are added to webpack.config.js file) ?
If above is right:
- On my server I just need to place index.html + output from webpack ( bundle.js) ? ( In simple scenario) ?
- package.json will be used only on development side ?