@ngx-resource/ngx-http-legacy
It's implementation of ResourceHandler which uses Angular Http from @angular/http
How to install and setup it
& npm i --save @ngx-resource/core @ngx-resource/ngx-http-legacy
In you app module
export function myHandlerFactory(http: Http) {
return new MyResourceHandler(http);
}
@NgModule({
imports: [
BrowserModule,
BrowserAnimationsModule,
HttpClientModule,
ResourceModule.forRoot()
],
declarations: [...],
bootstrap: [...],
entryComponents: [...],
providers: [...]
})
export class AppModule {
}