-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.mjs
36 lines (28 loc) · 784 Bytes
/
app.mjs
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
import express from "express";
import mongoose from "mongoose";
import { router } from "./routes/product.route.mjs";
import dotenv from "dotenv";
import { swaggerRouter } from "./routes/swagger.route.mjs";
dotenv.config();
const app = express();
const port = 3000;
//middleware
app.use(express.json());
//para poder enviar form
app.use(express.urlencoded({ extended: false }));
app.use("/v1/products", router);
app.use("/v1/swagger", swaggerRouter);
app.get("/", (req, res) => {
res.send("Hello world!");
});
mongoose
.connect(process.env.DB_ROUTE)
.then(() => {
console.log("Connect to database!");
app.listen(port, () => {
console.log(`server running at http://localhost:3000`);
});
})
.catch(() => {
console.log("Connection failed!");
});