? ?????? Express.js ? MongoDB? ???? CRUD(??, ??, ????, ??) ??? ???? ??? ?????. CRUD? ??????? ?????? ?? ?? ???? ???? ? ??????? ??????.
?? ??
- JavaScript, Node.js, Express.js? ?? ?? ??
- MongoDB? ??? ?????? MongoDB ???? ???(?: MongoDB Atlas)? ??????.
- npm? ???????.
???? ??
- Node.js ???? ???:
mkdir crud-express-mongodb cd crud-express-mongodb npm init -y
- ??? ??:
npm install express mongoose body-parser cors dotenv
- ?? ?? ??? ????.
crud-express-mongodb/ |-- models/ |-- routes/ |-- .env |-- server.js
1??: MongoDB ?? ??
??: .env
MONGO_URI=mongodb://localhost:27017/crudDB PORT=5000
??: server.js
const express = require("express"); const mongoose = require("mongoose"); const bodyParser = require("body-parser"); const cors = require("cors"); require("dotenv").config(); const app = express(); // Middleware app.use(bodyParser.json()); app.use(cors()); // MongoDB Connection mongoose .connect(process.env.MONGO_URI, { useNewUrlParser: true, useUnifiedTopology: true }) .then(() => console.log("MongoDB Connected")) .catch((err) => console.error("MongoDB connection error:", err)); // Routes const itemRoutes = require("./routes/itemRoutes"); app.use("/api/items", itemRoutes); // Start Server const PORT = process.env.PORT || 5000; app.listen(PORT, () => console.log(`Server running on port ${PORT}`));
2??: MongoDB ??? ??
??: models/Item.js
const mongoose = require("mongoose"); const itemSchema = new mongoose.Schema({ name: { type: String, required: true, }, description: { type: String, required: true, }, price: { type: Number, required: true, }, }, { timestamps: true }); module.exports = mongoose.model("Item", itemSchema);
3??: CRUD ?? ??
??: ??/itemRoutes.js
const express = require("express"); const router = express.Router(); const Item = require("../models/Item"); // Create an item router.post("/", async (req, res) => { try { const newItem = new Item(req.body); const savedItem = await newItem.save(); res.status(201).json(savedItem); } catch (err) { res.status(500).json({ error: err.message }); } }); // Get all items router.get("/", async (req, res) => { try { const items = await Item.find(); res.status(200).json(items); } catch (err) { res.status(500).json({ error: err.message }); } }); // Get an item by ID router.get("/:id", async (req, res) => { try { const item = await Item.findById(req.params.id); if (!item) return res.status(404).json({ error: "Item not found" }); res.status(200).json(item); } catch (err) { res.status(500).json({ error: err.message }); } }); // Update an item by ID router.put("/:id", async (req, res) => { try { const updatedItem = await Item.findByIdAndUpdate(req.params.id, req.body, { new: true }); if (!updatedItem) return res.status(404).json({ error: "Item not found" }); res.status(200).json(updatedItem); } catch (err) { res.status(500).json({ error: err.message }); } }); // Delete an item by ID router.delete("/:id", async (req, res) => { try { const deletedItem = await Item.findByIdAndDelete(req.params.id); if (!deletedItem) return res.status(404).json({ error: "Item not found" }); res.status(200).json({ message: "Item deleted" }); } catch (err) { res.status(500).json({ error: err.message }); } }); module.exports = router;
4??: API ???
Postman ?? cURL? ?? ??? ???? ?? ?????? ??????.
- ?? ???:
POST /api/items Content-Type: application/json { "name": "Laptop", "description": "A powerful laptop", "price": 1200 }
- ?? ?? ????:
GET /api/items
- ID? ?? ????:
GET /api/items/:id
- ?? ????:
PUT /api/items/:id Content-Type: application/json { "name": "Gaming Laptop", "description": "A high-end gaming laptop", "price": 1500 }
- ?? ??:
DELETE /api/items/:id
? ??? Express.js ? MongoDB? ??? CRUD ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

Node.js?? HTTP ??? ???? ? ?? ???? ??? ????. 1. ?? ????? ????? ??? ??? ? ?? ????? ?? ?? ? https.get () ??? ?? ??? ??? ? ?? ????? ?? ??? ?????. 2.axios? ??? ???? ? ?? ??????. ??? ??? ??? ??? ??? ??? ???/???, ?? JSON ??, ???? ?? ?????. ??? ?? ??? ????? ?? ????. 3. ?? ??? ??? ??? ??? ???? ???? ??? ??? ???? ?????.

JavaScript ??? ??? ?? ?? ? ?? ???? ????. ?? ???? ???, ??, ??, ?, ???? ?? ? ??? ?????. ?? ????? ?? ?? ? ? ??? ????? ?? ??? ??? ????. ??, ?? ? ??? ?? ?? ??? ??? ??? ???? ??? ??? ???? ??? ?? ??? ????. ?? ? ????? ??? ???? ? ??? ? ??? TypeofNull? ??? ?????? ??? ? ????. ? ? ?? ??? ???? ?????? ????? ???? ??? ???? ? ??? ? ? ????.

?????, JavaScript ???! ?? ? JavaScript ??? ?? ?? ?????! ?? ?? ??? ??? ??? ? ????. Deno?? Oracle? ?? ??, ??? JavaScript ?? ??? ????, Google Chrome ???? ? ??? ??? ???? ?????. ?????! Deno Oracle? "JavaScript"??? ????? Oracle? ?? ??? ??? ??????. Node.js? Deno? ??? ? Ryan Dahl? ??? ?????? ???? ????? JavaScript? ??? ???? Oracle? ????? ???? ?????.

Cacheapi? ?????? ?? ???? ??? ???? ???, ?? ??? ??? ?? ???? ? ??? ?? ? ???? ??? ??????. 1. ???? ????, ??? ??, ?? ?? ?? ???? ???? ??? ? ????. 2. ??? ?? ?? ??? ?? ? ? ????. 3. ?? ?? ?? ?? ?? ??? ??? ?? ?????. 4. ??? ???? ?? ?? ???? ?? ?? ?? ?? ?? ???? ?? ?? ??? ??? ? ????. 5. ?? ???? ??, ??? ??? ? ??? ??, ?? ??? ? ?? ???? ???? ???? ? ?? ?????. 6.?? ??? ?? ?? ?? ??, ???? ?? ? HTTP ?? ????? ?????? ???????.

??? JavaScript?? ??? ??? ?????? ?? ???????. ?? ??, ?? ?? ? ??? ??? ?? ????? ????? ?????. 1. ?? ??? ??? ????? ???? ??. ()? ?? ??? ??? ?????. ?. ()? ?? ??? ?? ??? ??? ?? ? ? ????. 2. ?? ??? .catch ()? ???? ?? ??? ??? ?? ??? ??????, ??? ???? ???? ????? ??? ? ????. 3. Promise.all ()? ?? ????? (?? ?? ?? ? ??????? ??), Promise.Race () (? ?? ??? ?? ?) ? Promise.AllSettled () (?? ??? ???? ??)

.map (), .filter () ? .reduce ()? ?? JavaScript ?? ?? ???? ??? ??? ??? ? ? ????. 1) .map ()? ??? ??? ??? ???? ? ??? ???? ? ?????. 2) .filter ()? ???? ??? ????? ? ?????. 3) .reduce ()? ???? ?? ??? ???? ? ?????. ???? ??? ????? ??? ?? ?? ??? ?????.

JavaScript? ??? ??? ?? ??, ? ? ? ?? ???? ???? ??? ??? ?????. 1. ?? ??? ?? ??? ???? ??? ??? ??? ??? ?? WebAPI? ?????. 2. WebAPI? ??????? ??? ?? ? ? ??? ?? ??? (??? ?? ?? ???? ??)? ????. 3. ??? ??? ?? ??? ?? ??? ?????. ?? ??? ??? ????? ??? ??? ?? ? ???? ?????. 4. ???? ?? (? : Promise. 5. ??? ??? ???? ?? ???? ???? ?? ?? ?? ??? ????? ? ??????.

??? ??? ?? ???? ?? ??? ???? ?? ??? ??? ?? ??? ?? ??? ?????. 1. ??? ?? : ?? ??? ?? ? ? ???? ?? ??? ???? ??? ???? ??????. ?? ??, ??? ?? ? ? ?? ??? ?? ? ?? ??? ??????. 2. ??? ?? : ??? ???? ?? ?? ??? ?? ???? ????? ? ?? ?????? ???? ????? ? ?? ?? ??? true? ??????. 3. ?? ???? ?? ?? ??? ?? ??, ?? ??? ? ?? ???? ?????. 4. DOM ??? ???? ??, ?? ? ??? ? ??? ??? ?? ???? ?? ???? ?????.
