You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
271 B
JavaScript

const express = require('express');
const app = express();
const port = 3000; // You can use any available port
app.get('/end1', (req, res) => {
res.send('Hello world1!');
});
app.listen(port, () => {
console.log(`Server running at http://localhost:${port}`);
});