All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good
13 lines
205 B
JavaScript
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");
|
|
});
|