Coding⏱️ 2 min read📅 2026-05-31

How to Fix: An unhandled exception occurred: Job name "..getProjectMetadata" does not exist

The error is caused by a missing job name in the Angular Devkit core. The solution is to ensure that all jobs are properly registered and exist before running the application.

Quick Answer: Check your job names and register any missing jobs in the @angular-devkit/core configuration.

The error 'Job name "..getProjectMetadata" does not exist' typically occurs when the Angular CLI is unable to find a job definition in the project. This can happen due to several reasons, such as incorrect job configuration or missing dependencies.

⚠️ Common Causes

  • Incorrectly configured job in the `angular.json` file.
  • Missing dependencies required for the job to run.

🛠️ Step-by-Step Verified Fixes

Method 1: Update Angular CLI Version

  1. Step 1: Run the command `npm install -g @angular/cli@latest` to update the Angular CLI version.

Method 2: Configure Job in angular.json

  1. Step 1: Open the `angular.json` file and add a new job configuration under the `projects` section.

🎯 Final Words

To resolve this issue, it is recommended to update the Angular CLI version and configure the job in the `angular.json` file. By following these steps, you should be able to fix the error and get your application running smoothly.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions