-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
48 lines (40 loc) · 1.18 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// import express from 'express';
// import collection from './mongo.js';
// import cors from 'cors';
// const app = express();
// app.use(express.json());
// app.use(express.urlencoded({ extended: true }));
// app.use(cors());
// app.get("/", cors(), (req, res) => {});
// app.post("/login", async (req, res) => {
// const { email, password } = req.body;
// try {
// const user = await collection.findOne({ email });
// if (user) {
// res.json("exists");
// } else {
// res.json("not exists");
// }
// } catch (err) {
// console.error(err);
// return res.status(500).send("Server Error");
// }
// });
// app.post("/sign-up", async (req, res) => {
// const { email, password } = req.body;
// const data = { email: email, password: password };
// try {
// const user = await collection.findOne({ email });
// if (user) {
// res.json("exists");
// } else {
// res.json("not exists");
// await collection.insertMany([data]);
// }
// } catch (err) {
// console.error(err);
// return res.status(500).send("Server Error");
// }
// });
// v
// app.listen(3000, () => console.log("Server running on port 3000"));