Files
OpenQode/test_server.js
2025-12-14 00:40:14 +04:00

11 lines
262 B
JavaScript

const express = require('express');
const app = express();
const PORT = 15044;
app.get('/', (req, res) => {
res.send('Test server is working!');
});
app.listen(PORT, '0.0.0.0', () => {
console.log(`Test server running on http://localhost:${PORT}`);
});