Skip to content

Commit f50053a

Browse files
committed
Copilot third commit
1 parent 0a22b1a commit f50053a

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

comments.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Create web server
2+
const express = require('express');
3+
const app = express();
4+
5+
// Create a route to handle GET requests on the root URL (/)
6+
app.get('/', (req, res) => {
7+
res.send('Hello, World!');
8+
});
9+
10+
// Start the server
11+
app.listen(3000, () => {
12+
console.log('Server is running on http://localhost:3000');
13+
});

0 commit comments

Comments
 (0)