Skip to content

Commit

Permalink
Merge pull request #4 from mniYUNSU/feat/server
Browse files Browse the repository at this point in the history
 [Server] / #1 / app.js : μ„œλ²„ ON
  • Loading branch information
minjman2659 authored Aug 25, 2021
2 parents 8ff55e9 + 589338a commit ab2a385
Show file tree
Hide file tree
Showing 3 changed files with 1,808 additions and 0 deletions.
16 changes: 16 additions & 0 deletions server/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const express = require("express");
const cors = require("cors");
const cookie = require("cookie-parser");
const app = express();
const port = 4000;

app.use(express.json());
app.use(cors());

app.get("/", (req, res) => {
res.send("Hello World!");
});

app.listen(port, () => {
console.log(`Jurimma app listening at http://localhost:${port} 😘`);
});
Loading

0 comments on commit ab2a385

Please sign in to comment.