<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Monika B R</title>
    <description>The latest articles on DEV Community by Monika B R (@monikaranjithkumar).</description>
    <link>https://dev.to/monikaranjithkumar</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3917049%2F924450eb-1e56-4aaa-8e44-cf3cca726054.png</url>
      <title>DEV Community: Monika B R</title>
      <link>https://dev.to/monikaranjithkumar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/monikaranjithkumar"/>
    <language>en</language>
    <item>
      <title>Day 2 of MERN Stack Journey 🚀</title>
      <dc:creator>Monika B R</dc:creator>
      <pubDate>Fri, 08 May 2026 13:47:57 +0000</pubDate>
      <link>https://dev.to/monikaranjithkumar/day-2-of-mern-stack-journey-486g</link>
      <guid>https://dev.to/monikaranjithkumar/day-2-of-mern-stack-journey-486g</guid>
      <description>&lt;p&gt;One important realization from today was:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Every big application we use daily once started with a simple server, a database connection, and a few lines of code.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Today’s MERN Stack session was highly interactive, practical, and fun to learn. Instead of focusing only on theory, we started developing a real-world Employee Management System using the MERN Stack. This session helped us understand how frontend, backend, database, APIs, and deployment work together in a complete full stack application.&lt;/p&gt;

&lt;p&gt;We followed the official MongoDB MERN tutorial as a reference guide:&lt;/p&gt;

&lt;p&gt;MongoDB MERN Stack Tutorial&lt;br&gt;
&lt;a href="https://www.mongodb.com/resources/languages/mern-stack-tutorial" rel="noopener noreferrer"&gt;https://www.mongodb.com/resources/languages/mern-stack-tutorial&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🌟 What is MERN Stack?
&lt;/h2&gt;

&lt;p&gt;MERN is a popular full stack web development technology stack.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Technology&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;MongoDB&lt;/td&gt;
&lt;td&gt;Database&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Express.js&lt;/td&gt;
&lt;td&gt;Backend Framework&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;React.js&lt;/td&gt;
&lt;td&gt;Frontend Library&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Node.js&lt;/td&gt;
&lt;td&gt;Runtime Environment&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;✨ One of the biggest advantages of MERN Stack is that the entire application uses JavaScript from frontend to backend.&lt;/p&gt;

&lt;h2&gt;
  
  
  💻 Project Started — Employee Management System
&lt;/h2&gt;

&lt;p&gt;Today we started building an Employee Management System where:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Employee data can be managed&lt;/li&gt;
&lt;li&gt;Frontend and backend communicate using APIs&lt;/li&gt;
&lt;li&gt;Data is stored in MongoDB Atlas&lt;/li&gt;
&lt;li&gt;Application is deployed online&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This gave us real-world exposure to full stack development.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚙️ Backend Setup
&lt;/h2&gt;

&lt;p&gt;We first worked on backend configuration and server setup.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✅ Tasks Completed
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Created MERN and SERVER folders&lt;/li&gt;
&lt;li&gt;Initialized Node.js project using:&lt;/li&gt;
&lt;li&gt;npm init -y&lt;/li&gt;
&lt;li&gt;Installed required packages:&lt;/li&gt;
&lt;li&gt;Express.js&lt;/li&gt;
&lt;li&gt;MongoDB&lt;/li&gt;
&lt;li&gt;CORS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;em&gt;Updated package.json with:&lt;/em&gt;&lt;br&gt;
"type": "module"&lt;br&gt;
Created server.js for backend server setup&lt;/p&gt;

&lt;h2&gt;
  
  
  🧠 Quick Recap — Why Express.js?
&lt;/h2&gt;

&lt;p&gt;Express.js helps us:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create backend servers&lt;/li&gt;
&lt;li&gt;Build APIs&lt;/li&gt;
&lt;li&gt;Handle requests and responses&lt;/li&gt;
&lt;li&gt;Connect frontend with database&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  ☁️ MongoDB Atlas Setup
&lt;/h2&gt;

&lt;p&gt;We learned how to connect our application with a cloud database using MongoDB Atlas.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✅ Tasks Performed
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Created MongoDB Atlas cluster&lt;/li&gt;
&lt;li&gt;Generated MongoDB connection string&lt;/li&gt;
&lt;li&gt;Added IP address in Network Access&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Created:&lt;/strong&gt;&lt;br&gt;
config.env&lt;br&gt;
connection.js&lt;br&gt;
Successfully connected MongoDB with backend server 🎉&lt;br&gt;
🔥 Interesting Concept Learned&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MongoDB stores data in:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Collections&lt;br&gt;
Documents&lt;/p&gt;

&lt;p&gt;Unlike SQL databases that use rows and tables, MongoDB stores flexible JSON-like documents.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔗 API Development
&lt;/h2&gt;

&lt;p&gt;We learned how APIs connect frontend and backend applications.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✅ Tasks Completed
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Created routes folder&lt;/li&gt;
&lt;li&gt;Created records.js&lt;/li&gt;
&lt;li&gt;Connected backend with MongoDB&lt;/li&gt;
&lt;li&gt;Tested API routes successfully&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This helped us understand backend routing and API communication.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚡ CRUD Operations Recap
&lt;/h2&gt;

&lt;p&gt;CRUD is one of the most important concepts in full stack development.&lt;/p&gt;

&lt;p&gt;CRUD    Meaning&lt;br&gt;
Create  Add Data&lt;br&gt;
Read    View Data&lt;br&gt;
Update  Edit Existing Data&lt;br&gt;
Delete  Remove Data&lt;/p&gt;

&lt;p&gt;🎨 Frontend Setup using React + Vite&lt;/p&gt;

&lt;p&gt;Frontend development was done using React and Vite.&lt;/p&gt;

&lt;h2&gt;
  
  
  ✅ Tasks Completed
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Created React project using Vite&lt;/li&gt;
&lt;li&gt;Installed Tailwind CSS&lt;/li&gt;
&lt;li&gt;Installed React Router DOM&lt;/li&gt;
&lt;li&gt;Connected frontend and backend using localhost&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🚀 Why Vite?
&lt;/h2&gt;

&lt;p&gt;Compared to traditional React setup:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Faster development server&lt;/li&gt;
&lt;li&gt;Faster builds&lt;/li&gt;
&lt;li&gt;Better performance&lt;/li&gt;
&lt;li&gt;Improved developer experience&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🎯 Tailwind CSS Learning
&lt;/h2&gt;

&lt;p&gt;We used Tailwind CSS for styling the frontend.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Advantages of Tailwind CSS&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;✅ Faster UI development&lt;br&gt;
✅ Utility-first styling&lt;br&gt;
✅ Responsive design support&lt;br&gt;
✅ Cleaner CSS workflow&lt;/p&gt;

&lt;h2&gt;
  
  
  🌐 Deployment Process
&lt;/h2&gt;

&lt;p&gt;One of the most exciting parts of today’s session was deployment.&lt;/p&gt;

&lt;p&gt;Frontend Deployment&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Frontend was hosted using:&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Vercel
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://vercel.com/" rel="noopener noreferrer"&gt;https://vercel.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Learned:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;GitHub integration&lt;/li&gt;
&lt;li&gt;Automatic deployment&lt;/li&gt;
&lt;li&gt;React application hosting&lt;/li&gt;
&lt;li&gt;Production build process&lt;/li&gt;
&lt;li&gt;Backend Deployment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Backend server was hosted using:&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Render
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://render.com/" rel="noopener noreferrer"&gt;https://render.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Learned:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Node.js backend hosting&lt;/li&gt;
&lt;li&gt;Environment variable configuration&lt;/li&gt;
&lt;li&gt;Cloud deployment work flow&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🔐 Environment Variables
&lt;/h2&gt;

&lt;p&gt;We learned how to securely store sensitive information using .env files.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;MONGO_URI=your_database_url&lt;br&gt;
PORT=5050&lt;/p&gt;

&lt;p&gt;This helps improve security and configuration management.&lt;/p&gt;

&lt;h2&gt;
  
  
  📚 Learning Resources Shared During Session
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. AI Engineering From Scratch&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/rohitg00/ai-engineering-from-scratch" rel="noopener noreferrer"&gt;https://github.com/rohitg00/ai-engineering-from-scratch&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A great repository to learn AI engineering practically from basics.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Understand Anything&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Lum1104/Understand-Anything" rel="noopener noreferrer"&gt;https://github.com/Lum1104/Understand-Anything&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Helpful for simplifying and understanding technical concepts easily.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. DeepTutor&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/HKUDS/DeepTutor" rel="noopener noreferrer"&gt;https://github.com/HKUDS/DeepTutor&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An AI-powered educational learning project.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. FreeCodeCamp&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.freecodecamp.org/" rel="noopener noreferrer"&gt;https://www.freecodecamp.org/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Excellent platform for learning:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MERN Stack&lt;/li&gt;
&lt;li&gt;JavaScript&lt;/li&gt;
&lt;li&gt;APIs&lt;/li&gt;
&lt;li&gt;Full Stack Development&lt;/li&gt;
&lt;li&gt;Database concepts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;5. Anthropic&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.anthropic.com/" rel="noopener noreferrer"&gt;https://www.anthropic.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An AI company focused on building safe and advanced AI systems.&lt;/p&gt;

</description>
      <category>learning</category>
      <category>mern</category>
      <category>fullstack</category>
      <category>developer</category>
    </item>
    <item>
      <title>MERN Stack Development – Day 1 🚀</title>
      <dc:creator>Monika B R</dc:creator>
      <pubDate>Thu, 07 May 2026 17:09:42 +0000</pubDate>
      <link>https://dev.to/monikaranjithkumar/mern-stack-development-day-1-4j8</link>
      <guid>https://dev.to/monikaranjithkumar/mern-stack-development-day-1-4j8</guid>
      <description>&lt;p&gt;Today was my first practical session in MERN Stack Development. It was an exciting learning experience where I explored both theoretical and practical concepts used in real-world web development.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1 – Creating Developer Accounts
&lt;/h2&gt;

&lt;p&gt;In today’s session, we created accounts on platforms commonly used by full stack developers.&lt;/p&gt;

&lt;h3&gt;
  
  
  GitHub
&lt;/h3&gt;

&lt;p&gt;GitHub is used to store, manage, and share source code online.&lt;/p&gt;

&lt;h3&gt;
  
  
  Vercel
&lt;/h3&gt;

&lt;p&gt;Vercel is used for deploying frontend applications like React projects.&lt;/p&gt;

&lt;h3&gt;
  
  
  Render
&lt;/h3&gt;

&lt;p&gt;Render helps in deploying backend applications such as Node.js and Express servers.&lt;/p&gt;

&lt;h3&gt;
  
  
  MongoDB Atlas
&lt;/h3&gt;

&lt;p&gt;MongoDB Atlas is a cloud-based database service used to store application data online.&lt;/p&gt;

&lt;h3&gt;
  
  
  DEV Community
&lt;/h3&gt;

&lt;p&gt;DEV Community is a platform where developers share technical blogs and learning experiences.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2 – Introduction to MERN Stack
&lt;/h2&gt;

&lt;p&gt;We learned the meaning of MERN Stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;MongoDB – Database&lt;/li&gt;
&lt;li&gt;Express.js – Backend Framework&lt;/li&gt;
&lt;li&gt;React.js – Frontend Library&lt;/li&gt;
&lt;li&gt;Node.js – Runtime Environment&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This helped me understand how frontend, backend, and database technologies work together in full stack development.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. React (The Face)
&lt;/h2&gt;

&lt;p&gt;React is a Frontend Library. Its only job is to handle what the user sees on their screen.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Analogy:&lt;/strong&gt; It is like the menu and the table in a restaurant.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use:&lt;/strong&gt;You use it to build buttons, forms, and the layout of your website.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Node.js (The Engine)
&lt;/h2&gt;

&lt;p&gt;Node.js is a Runtime Environment. It allows JavaScript to run on your computer/server instead of just inside a web browser.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Analogy:&lt;/strong&gt;It is the electricity and kitchen equipment that allows the restaurant to function.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use:&lt;/strong&gt;It provides the environment where your backend code lives.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Express.js (The Waiter)
&lt;/h2&gt;

&lt;p&gt;Express is a Backend Framework that runs on top of Node.js. It handles "Requests" and "Responses."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Analogy:&lt;/strong&gt;It is the waiter. When a user clicks a button (Order), Express takes that request to the kitchen (Server/Database) and brings the data back to the user.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use:&lt;/strong&gt;You use it to create APIs (routes like /login or /get-data).&lt;/p&gt;

&lt;h2&gt;
  
  
  4. MongoDB Atlas (The Warehouse)
&lt;/h2&gt;

&lt;p&gt;Atlas is a Cloud Database. It is a place on the internet where your data is stored permanently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Analogy:&lt;/strong&gt; It is the storage room where all the ingredients (data) are kept.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use:&lt;/strong&gt; It stores user profiles, passwords, and project details so they don't disappear when you refresh the page.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. MongoDB Compass (The Window)
&lt;/h2&gt;

&lt;p&gt;Compass is a GUI (Graphical User Interface). It is a tool installed on your laptop that lets you "look into" your database without writing code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Analogy:&lt;/strong&gt;It is like an X-ray or a window into the storage room.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use:&lt;/strong&gt;You use it to manually check if your data was saved correctly, or to delete/edit a piece of data quickly using your mouse.&lt;/p&gt;

&lt;h2&gt;
  
  
  How they work together:
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;User clicks a button in React.&lt;/li&gt;
&lt;li&gt;Express (running on Node) hears the click and asks MongoDB Atlas for data.&lt;/li&gt;
&lt;li&gt;Atlas sends the data back to Express.&lt;/li&gt;
&lt;li&gt;Express gives it to React to show on the screen.&lt;/li&gt;
&lt;li&gt;You use Compass to make sure the data in Atlas looks correct.
Here is the simplest code example for each part of the stack. This follows the structure you need for your project.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  1. React (The Frontend)
&lt;/h2&gt;

&lt;p&gt;In your App.jsx, this code creates a simple heading and a button.&lt;/p&gt;

&lt;p&gt;`import './App.css'&lt;/p&gt;

&lt;p&gt;export default function App() {&lt;br&gt;
  return (&lt;br&gt;
    &lt;/p&gt;
&lt;br&gt;
      &lt;h1&gt;Hello from React!&lt;/h1&gt;
&lt;br&gt;
      &lt;p&gt;This is my first MERN project.&lt;/p&gt;
&lt;br&gt;
       alert('Button Clicked!')}&amp;gt;Click Me&lt;br&gt;
    &lt;br&gt;
  )&lt;br&gt;
}`
&lt;h2&gt;
  
  
  2. Express &amp;amp; Node (The Backend Server)
&lt;/h2&gt;

&lt;p&gt;Create a file named express.js. This code creates a server that sends a message when you visit it in your browser.&lt;/p&gt;

&lt;p&gt;`const express = require('express');&lt;br&gt;
const app = express();&lt;br&gt;
const port = 3000;&lt;/p&gt;

&lt;p&gt;// This is a "Route"&lt;br&gt;
app.get('/', (req, res) =&amp;gt; {&lt;br&gt;
  res.send('Welcome Learners');&lt;br&gt;
});&lt;/p&gt;

&lt;p&gt;app.listen(port, () =&amp;gt; {&lt;br&gt;
  console.log(&lt;code&gt;Server is live at http://localhost:${port}&lt;/code&gt;);&lt;br&gt;
});`&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Node
&lt;/h2&gt;

&lt;p&gt;Create a file named server.js.&lt;/p&gt;

&lt;p&gt;`const { createServer } = require('node:http');&lt;/p&gt;

&lt;p&gt;const hostname = '127.0.0.1';&lt;br&gt;
const port = 3000;&lt;/p&gt;

&lt;p&gt;const server = createServer((req, res) =&amp;gt; {&lt;br&gt;
  res.statusCode = 200;&lt;br&gt;
  res.setHeader('Content-Type', 'text/plain');&lt;br&gt;
  res.end('Hello Monika 23AI040');&lt;br&gt;
});&lt;/p&gt;

&lt;p&gt;server.listen(port, hostname, () =&amp;gt; {&lt;br&gt;
  console.log(&lt;code&gt;Server running at http://${hostname}:${port}/&lt;/code&gt;);&lt;br&gt;
});`&lt;/p&gt;

&lt;h2&gt;
  
  
  4. MongoDB Atlas &amp;amp; Compass
&lt;/h2&gt;

&lt;p&gt;These do not use "code" in the traditional sense, but here is what you do with them:&lt;/p&gt;

&lt;p&gt;MongoDB Atlas: You go to the website, click Connect, and copy the Connection String (like the dbURI shown above).&lt;/p&gt;

&lt;p&gt;MongoDB Compass: Open the app on your computer and paste that same dbURI string into the box to see your data tables.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CRUD operations are the basic functions used in databases to manage data. CRUD stands for Create, Read, Update, and Delete. &lt;/li&gt;
&lt;li&gt;Create is used to add new data into the database, Read is used to view or retrieve existing data, Update is used to modify the existing data, and Delete is used to remove data from the database. &lt;/li&gt;
&lt;li&gt;In MongoDB, CRUD operations are performed using commands like &lt;code&gt;insertOne()&lt;/code&gt;, &lt;code&gt;find()&lt;/code&gt;, &lt;code&gt;updateOne()&lt;/code&gt;, and &lt;code&gt;deleteOne()&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;These operations help users efficiently store and manage information in a NoSQL database system.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  5. Git Commands (Saving your work)
&lt;/h2&gt;

&lt;p&gt;Run these in your terminal to save all the code above to your GitHub.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;git init&lt;/li&gt;
&lt;li&gt;git add .&lt;/li&gt;
&lt;li&gt;git commit -m "FSD"&lt;/li&gt;
&lt;li&gt;git branch -M main&lt;/li&gt;
&lt;li&gt;git remote add origin &lt;/li&gt;
&lt;li&gt;git push -u origin main&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Day 1 of MERN Stack Development was very informative and practical. Learning how frontend, backend, database, and deployment platforms work together was exciting.&lt;/p&gt;

&lt;p&gt;As a student programmer, this session motivated me to build more projects and improve my full stack development skills step by step.&lt;/p&gt;

&lt;p&gt;Looking forward to learning APIs, routing, authentication, and full deployment in upcoming sessions.&lt;/p&gt;

</description>
      <category>node</category>
      <category>backend</category>
      <category>frontend</category>
      <category>mern</category>
    </item>
  </channel>
</rss>
