const server = https.createServer(options, app);

server.listen(port, () => { console.log(`SugarCRM Plugin server running at https://localhost:${port}`); });

const app = express(); const port = 3000;