const express = require('express'); const app = express(); const PORT = 4320; app.get('/', (req, res) => { res.send('

Hello from dev-test!

'); }); app.listen(PORT, () => { console.log(`Server running at http://localhost:${PORT}`); });