template initialization
All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good
All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good
This commit is contained in:
12
backend/server.js
Normal file
12
backend/server.js
Normal file
@ -0,0 +1,12 @@
|
||||
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");
|
||||
});
|
Reference in New Issue
Block a user