-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
98 lines (83 loc) · 2.57 KB
/
index.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
const express = require("express");
const mongoose = require("mongoose");
const Product = require("./models/product.model.js"); //fetch schema
const productRoutes = require("./routes/product.route.js");
import { config } from "dotenv";
config();
const app = express();
//middleware to use json and form types
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
//routes
app.use("/api/products", productRoutes);
//for generalization
app.get("/", (req, res) => {
res.send("Hello from Node API server Updated!");
});
//if in one file i.e. NO MVC
// //read api
// app.get("/api/products", async (req, res) => {
// try {
// const products = await Product.find({});
// res.status(200).json(products);
// } catch {
// res.status(500).json({ message: error.message });
// }
// });
// //read api of a particular product using its id
// app.get("/api/product/:id", async (req, res) => {
// try {
// const { id } = req.params;
// const product = await Product.findById(id);
// res.status(200).json(product);
// } catch {
// res.status(500).json({ message: error.message });
// }
// });
// //update api
// app.put("/api/product/:id", async (req, res) => {
// try {
// const { id } = req.params;
// const product = await Product.findByIdAndUpdate(id, req.body);
// if (!product) {
// return res.status(404).json({ message: "Product not found" });
// }
// const updatedProduct = await Product.findById(id);
// res.status(200).json(updatedProduct);
// } catch {
// res.status(500).json({ message: error.message });
// }
// });
// //delete api
// app.delete("/api/product/:id", async (req, res) => {
// try{
// const {id} = req.params;
// const product = await Product.findByIdAndDelete(id);
// if(!product) {
// return res.status(404).json({message: "Product not found"})
// }
// res.status(200).json({message: "Product deleted succesfully"});
// } catch {
// res.status(500).json({message: error.message});
// }
// })
// //create api
// app.post("/api/products", async (req, res) => {
// try {
// const product = await Product.create(req.body);
// res.status(200).json(product);
// } catch (error) {
// res.status(500).json({ message: error.message });
// }
// });
mongoose
.connect(process.env.MONGODB_URL)
.then(() => {
console.log("Connected to database!"),
app.listen(3000, () => {
console.log("Server is running on port 3000");
});
})
.catch(() => {
console.log("Connection failed!");
});