"use strict"; module.exports = function productionServer({ options, host }) { options.expressApp .listen({ port: options.port, host: host }) .on("listening", (_event) => { console.log(`Production server running on ${(host === "::") ? "*" : host}:${options.port}`); }); };