DEV Community

Discussion on: Make a React App with Webpack, Babel and Express

Collapse
 
kingman profile image
King-Man • Edited

Just found a little issue when I was trying to install babel. When I run the below command, it gave me an error saying @babel is not a thing.

Below is the command from the article:
npm install --save-dev @babel /core @babel /preset-env @babel /preset-react babel-loader

The solution is to eliminate the space between @babel & /core and do the same for the rest of the @babel.

And thank you for this article, I really appreciate your help!!