Author -  Sai gowtham

How to fix the Cannot find module '@babel/core' error

In this tutorial, we are going to learn about how to fix the Cannot find module ‘@babel/core’ error.

When we run a project using npm start, sometimes we see the following error in our terminal.

ERROR in ./src/index.js
Module build failed (from ./node_modules/babel-loader/lib/index.js):
Error: Cannot find module '@babel/core'

It occurs due to the package name is changed from babel-core to @babel/core

To fix the error, we can install the @babel/core module by running the following command.

npm i -D @babel/core

If your still facing the issue even after installing the @babel/core module follow the below steps to fix it.

  1. First, remove the node_modules folder, package-lock.json file present inside your project directory by using the below command.
rm-rf node_modules
rm-rf package-lock.json

or you can remove it manually by right-clicking on it and select the delete option.

  1. Clear the npm cache.
npm clean cache --force
  1. Re-install the node modules again by running the npm install command.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY