//... export class TaskService { host: string = 'http://localhost:8000/api/'; constructor(private http: HttpClient) { } getTasks() { let endpoint: string = 'tasks'; let url = this.host + endpoint; return this.http.get(url); } }