/** * Start the Express HTTP server * @module bin/server */importcreateServerfrom"app";constEXPRESS_PORT=parseInt(process.env.EXPRESS_PORT)||5000;createServer().then(({server})=>{server.listen(EXPRESS_PORT,()=>{console.log("Shoebox listening on http://localhost:"+server.address().port);});});