How to resolve “Error: Cannot find module ‘@angular-devkit/core’ – after clean install”
Background This error can occur when you have just started learning angular or are already an expert into it. In former scenario, this error will occur when you have created a new project using npm new command and are ready to deploy it. But once you run the command ng serve, you are presented with this error and the below stacktrace. How to resolve Follow the below steps to resolve this error. Update Angular cli using command npm update -g @angular/cli Navigate to your application folder and open package.json file using a text editor. Search for the property @angular/cli under devDependencies. It willRead More →