NG0201: No provider for {token} found!

From Get docs
< Errors ListAngular/docs/11/errors/ng0201


NG0201: No provider for {token} found!


Description

You see this error when you try to inject a service but have not declared a corresponding provider. A provider is a mapping that supplies a value that you can inject into the constructor of a class in your application.

Read more on providers in our Dependency Injection guide.

Debugging the error

Work backwards from the object where the error states that a provider is missing: No provider for ${this}!. This is commonly thrown in services, which require non-existing providers.

To fix the error ensure that your service is registered in the list of providers of an NgModule or has the @Injectable decorator with a providedIn property at top.

The most common solution is to add a provider in @Injectable using providedIn:

@Injectable({ providedIn: 'app' })

© 2010–2021 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v11.angular.io/errors/NG0201