,

2024 में शुरुआत करने वालों के लिए Express JS की ट्यूटोरियल, डेटा डालें और लिएं #nodejstutorial #expressjs

Posted by

Express.js Tutorial for Beginners in Hindi 2024

Express.js Tutorial for Beginners in Hindi 2024

आज हम एक Express.js Tutorial लेकर आए हैं जो कि beginners के लिए है। Express.js एक जानी-मानी और प्रभावी Node.js फ्रेमवर्क है जो वेब एप्लिकेशन और एपीआईज़ बनाने में मदद करता है।

प्रारंभिक सेटअप

सबसे पहले, आपको Node.js इंस्टाल करना होगा। फिर आप निम्नलिखित कमांड का उपयोग करके Express इंस्टॉल कर सकते हैं:


npm install express

डेटा डालना और निकालना

एक्सप्रेस.js में डेटा डालने और निकालने के लिए आप मॉडेल तैयार कर सकते हैं। निम्नलिखित कोड स्निपेट दिखाता है कैसे आप डेटाबेस के साथ कनेक्ट कर सकते हैं और डेटा डाल सकते हैं:


const express = require('express');
const app = express();
const mongoose = require('mongoose');

mongoose.connect('mongodb://localhost/mydb', { useNewUrlParser: true, useUnifiedTopology: true });

const UserSchema = new mongoose.Schema({
name: String,
age: Number
});

const User = mongoose.model('User', UserSchema);

app.post('/users', async (req, res) => {
const newUser = new User(req.body);
await newUser.save();
res.send(newUser);
});

app.get('/users', async (req, res) => {
const users = await User.find();
res.send(users);
});

app.listen(3000, () => {
console.log('Server is running on port 3000');
});

सारांश

यह था Express.js का एक beginner-friendly tutorial। आप इसे अपने प्रोजेक्ट्स में इम्प्लीमेंट करके Express.js के प्रभावी छेड़छाड़ सीख सकते हैं।

#nodejstutorial #expressjs

0 0 votes
Article Rating
6 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
@musicmasti1455
7 months ago

Thanks

@phptraininginstituteindelh3147
7 months ago

Very nice

@sarthaksharma9882
7 months ago

Awesome

@videomaker8728
7 months ago

Thanks for video, I am waiting for such videos

@Kidsentertainment701
7 months ago

wow!

@prabhasharma5461
7 months ago

Shandar