dev-test/server.js
root 24b9d061d4 feat: add hello world server
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-26 09:57:37 +00:00

12 lines
276 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const express = require('express');
const app = express();
const PORT = 4320;
app.get('/', (req, res) => {
res.send('<html><body><h1>Hello from dev-test</h1></body></html>');
});
app.listen(PORT, () => {
console.log(`Server running at http://localhost:${PORT}`);
});