React Router v4 doesn’t require a lot of configuration to run. The core examples will run out of the box with Create React App. In this lesson, you will create an application and get React Router v4 up and running.
note: in this video react-router-dom
is installed with the --save-dev
flag. This is not required and may cause issues if used. Simply install it with npm install react-router-dom
and it will function as expected.
Hey Joe! Love your personal site, simple design with great effects! Had to laugh when I opened to dev tools. Also great course so far!
Quick questions:
What is your sublime plugin/theme that gives you all the nice syntax highlighting along with the icons along side the file names?
Why no need for the semi-colons in the javascript?
Thanks for taking the time to answer these simple queries.
Hey Joe, just a quick question: Why are you installing the router with --save-dev?
just force of habit - could've just as easily have been --save.
Hi Joe, Like your course and pace of delivery. I had the same question, would we not need the router to be installed with --save as it will be needed in prod as well, and not in dev?
I think we should not install react-router-dom this with --save-dev. That is wrong. Since it has to be the part of our app, we should just install it as just dependency (without --save-dev)
Agreed with Shripada. This video is misleading and should be corrected to indicate that react-router-dom should be added to the dependencies and not devDependencies.
Hey there, thanks for pointing out this error! It should be very useful for other learners.
For anybody else watching, you don't need --save-dev
and should not use it. It's an error.