// index.js import express from 'express'; const app = express(); const port = 7002; app.get('/', (req, res) => { res.send('Hello World!123123123123'); }); app.listen(port, () => { console.log(`Server is running at http://localhost:${port}`); });