Skip to content

Commit

Permalink
Copilot third commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ali4zimi committed Dec 2, 2024
1 parent ba6a47d commit 02258fb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions comments.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Create web server with express

const express = require('express');
const app = express();
const port = 3000;

app.get('/', (req, res) => {
res.send('Hello World!');
});

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

0 comments on commit 02258fb

Please sign in to comment.