What is the correct way to share the result of an Angular Http network call in RxJs 5?
By using Http, we call a method that does a network call and returns an http observable: getCustomer() { return this.http.get(‘/someUrl’).map(res => res.json()); … Read more