Use es6 notation in serveronly

This commit is contained in:
rejas 2021-04-18 14:49:54 +02:00
parent 3b4432cb00
commit 376b65c749

View File

@ -1,8 +1,8 @@
const app = require("../js/app.js"); const app = require("../js/app.js");
const Log = require("logger"); const Log = require("logger");
app.start(function (config) { app.start((config) => {
var bindAddress = config.address ? config.address : "localhost"; const bindAddress = config.address ? config.address : "localhost";
var httpType = config.useHttps ? "https" : "http"; const httpType = config.useHttps ? "https" : "http";
Log.log("\nReady to go! Please point your browser to: " + httpType + "://" + bindAddress + ":" + config.port); Log.log("\nReady to go! Please point your browser to: " + httpType + "://" + bindAddress + ":" + config.port);
}); });