-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
66 lines (54 loc) · 1.37 KB
/
server.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
const express = require("express");
const http = require("http");
const mongoose = require("mongoose");
// const fetch = require("node-fetch");
const { mongo_db } = require("./config/config");
const app = express();
/*
let url = "http://localhost:3000/api/hub/create";
let options = {
method: "POST",
headers: { "Content-Type": "application/json", name: "Parcel V2" },
};
fetch(url, options)
.then((res) => res.json())
.then((json) => console.log(json))
.catch((err) => console.error("error:" + err));
*/
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
const PORT = 3000;
server = http.createServer(app);
// MongoDB
mongoose.set("strictQuery", true);
mongoose
.connect(
`mongodb+srv://lenacd:${mongo_db}@testing-database.5bj1ur1.mongodb.net/?retryWrites=true&w=majority`
)
.then(() => {
console.log("MongoDB Connected");
})
.catch((e) => console.log("[API Error]: ", e));
// Routes
app.use("/papi", require("./api/public/index")).use(
"/api",
require("./api/core/index")
);
// 404 & 500 Error Handling
app.use((req, res, next) => {
const error = new Error("Not found");
error.status = 404;
next(error);
});
app.use((error, req, res, next) => {
res.status(error.status || 500);
res.json({
error: {
message: error.message,
},
});
});
// Server starting
server.listen(PORT, () =>
console.log(`Kyro API is running on port ${PORT}...`)
);