Vasan Subramanian
Vasan Subramanian
Please check the permissions on the output directory `static`. Babel will need to write out the compiled file into this directory. The fact that you have put your project directory...
Thanks! Yes, if you are using react-router latest versions (4 or above), the client-side specific stuff has been separated out to react-dom. You could follow the tutorials available (like the...
Thanks, Angel for pointing out the error.
The instructions in the book asks you to use the command line parameter `--presets react` while running babel. That way, you don't have to create the .babelrc file. What you...
Thanks, Marc. You need to move the file App.jsx to a newly created directory called `src` under the project directory. This directory will hold all front-end code in the future....
Good point, Marc. Please take a look at the GitHub repo source, it will be clear where each file / directory needs to be. For this section, you should be...
You're on Windows. All path separators (/) have to be back-slashes (\\). Try this: C:>cd marc\"web development"\mern\chapter_02 C:\Marc\Web Development\MERN\chapter_02>node_modules\\.bin\\babel src --presets react --out-dir static In the command, you'll need to...
Sorry, I was trying to highlight using **. Please look at the previous comment again.
I think you're missing a slash (\\) before .bin, or \ before babel. You need to know that you are running the command `babel` which resides in the directory node_modules\\.bin....
The bootstrap files are supposed to come from the static directory. I don't see a static directory in your repo. Also, ensure that you soft-link (or copy, if you are...