ExpressJs erlauben CORs für alle Hosts und Ports
// Express.js - Allow CORS for all hosts and ports
const cors = require('cors');
app.use(cors({ origin: '*' }));
// For testing/debugging purposes only
KostasX