I have an Angular2 app with a service that is used for getting a data from an API. Following this example, I want to create a separate file which s
Angular2
service
This is not supported. For services the providers need to be added to bootstrap(AppComponent, [..., Service, ServiceDependency1, ...])
bootstrap(AppComponent, [..., Service, ServiceDependency1, ...])
See also https://github.com/angular/angular/issues/5622