fifth commit
All checks were successful
Node API Test / test (push) Successful in 24s

This commit is contained in:
Gitea
2026-04-16 15:51:19 +05:30
parent dbda40e864
commit 6838b2754c
5 changed files with 4256 additions and 16 deletions

View File

@@ -0,0 +1,24 @@
const express = require("express");
const app = express();
app.use(express.json());
app.get("/", (req, res) => {
res.send("🚀 Home Route Working");
});
app.get("/health", (req, res) => {
res.json({
status: "OK",
message: "Server is healthy ✅"
});
});
module.exports = app;
// only start server if not testing
if (require.main === module) {
app.listen(3000, () => {
console.log("Server running on port 3000");
});
}