const express = require('express');
const app = express();
const port = 3001;
app.get('/', (req, res) => {
res.send(`
Cross-Origin Test
Cross-Origin Test Page
`);
});
app.listen(port, () => {
console.log(`Test server running at http://localhost:${port}`);
});