I\'m trying to run npm start
but giving me error \"An unhandled exception occurred: Could not find module \"@angular-devkit/build-angular\" I also tried to inst
I had a similar issue with the outdated dependency. I performed the following steps and it worked for me:
npm uninstall -g angular-cli @angular/cli
npm cache clean --force
npm outdated (to check all the outdated dependency)
npm update
Finally go to the folder containing your project, then run this command:
npm install -g @angular/cli