Skip to content

Commit b53d549

Browse files
committed
first commit
0 parents  commit b53d549

File tree

4 files changed

+1097
-0
lines changed

4 files changed

+1097
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/node_modules

app.js

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
const express = require('express');
2+
const cors = require('cors');
3+
4+
const app = express();
5+
6+
app.use(express.json());
7+
app.use(cors());
8+
9+
10+
app.get('/', (req, res) => {
11+
res.json({
12+
"message": "Working"
13+
})
14+
});
15+
16+
app.post('/', (req, res) => {
17+
res.json({
18+
"response": req.body
19+
})
20+
})
21+
22+
23+
app.listen(3000, () => {
24+
console.log("Listening")
25+
})
26+

0 commit comments

Comments
 (0)