Initial commit apps directory with .gitignore

This commit is contained in:
2026-02-22 15:15:41 +08:00
commit 0aa8cdd72c
228 changed files with 69672 additions and 0 deletions

11
testnode/server.js Normal file
View File

@@ -0,0 +1,11 @@
const http = require("http");
const PORT = process.env.PORT || 3000;
const server = http.createServer((req, res) => {
res.writeHead(200, { "Content-Type": "text/plain" });
res.end("Node.js test app from HOME folder is running!\n");
});
server.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});