We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a22b1a commit f50053aCopy full SHA for f50053a
comments.js
@@ -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