import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class ServerEndpointService { currentHost: string; currentPort: string; constructor() { this.currentHost = "localhost"; this.currentPort = "3000"; } testAndSetEndpoint() { } getCurrentEndpoint(): string { return "http://" + this.currentHost + ":" + this.currentPort + "/"; } }