I’m running into some problems with setting up this repository for Stephen Grider’s Modern React with Redux Udemy course.
Basically I cloned it and ran npm install. Upon running npm start, I get an error Cannot find module ‘C:\Users\sgoldber\Documents\udemy_tutorials\ReduxSimpleStarter\node_modules\webpack-dev-server\bin\webpack-dev-server.js’
I talked with someone on the gitter chat, and he suggested that I should in package.json, replace “start”: “node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js”, with “start”: “webpack-dev-server --open”
That resulted in the error Error: Cannot find module ‘webpack’
I don’t understand why I have this error: webpack and webpack-dev-server are in package.json, but they seem to not be showing up in my node_modules folder.
There’s a discussion here that deals with this exact particular problem and I tried some of their suggestions: nothing seemed to work.
Please let me know as soon as possible what to do! I am starting on the full-stack back end projects (i.e. the voting app) and really need a good refresher on React, and I need to learn Redux on top of that. Thanks so much!