This commit is contained in:
2026-03-10 10:54:20 -04:00
parent 1fdfbb1b4f
commit b732795717
14 changed files with 3482 additions and 3 deletions
@@ -0,0 +1,9 @@
const http = require("http");
const server = http.createServer((req, res) => {
res.writeHead(200, { "Content-Type": "text/plain" });
res.end("Hello from Node.js Web Server! My Name is Levi");
});
server.listen(3000, () => {
console.log("Server running at http://localhost:3000");
});