JJ.Back/index.js
2024-07-24 04:44:37 +00:00

15 lines
257 B
JavaScript
Executable File

// 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}`);
});