12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
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}`);
|
||
});
|