Skip to content

Commit

Permalink
Update comments.js
Browse files Browse the repository at this point in the history
  • Loading branch information
GoKarol authored Mar 31, 2024
1 parent f7070c1 commit 3828465
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions comments.js
Original file line number Diff line number Diff line change
@@ -1 +1,11 @@
const http = require('http');

// Create web server

const server = http.createServer((req, res) => {
// Handle incoming requests here
});

server.listen(3000, () => {
console.log('Server is running on port 3000');
});

0 comments on commit 3828465

Please sign in to comment.