Files
MERN_STACK_TEMPLATE/backend/server.js
Dongho Kim a781c563d0
All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good
template initialization
2025-05-01 23:07:29 +02:00

13 lines
205 B
JavaScript

import express from "express";
const app = express();
app.get("/", (req, res) => {
res.send("Hello World!");
});
app.listen(8080, () => {
console.log("Server Started at 0.0.0.0:8080");
});