<?xml version="1.0" encoding="UTF-8"?>
<rss
    version="2.0"
    xmlns:atom="http://www.w3.org/2005/Atom"
>
    <channel>
        <atom:link
            type="application/rss+xml"
            href="https://dev-moka.com/feed/posts"
            rel="self"
        />
        <title><![CDATA[Posts feed]]></title>
        <link><![CDATA[https://dev-moka.com/feed/posts]]></link>
                <description><![CDATA[Latest posts from Dev MOKA]]></description>
        <language>en-US</language>
        <pubDate>2025-06-14T01:01:12+00:00</pubDate>

                    <item>
                <title><![CDATA[Node.js Event Loop]]></title>
                <link>https://dev-moka.com/nodejs-event-loop</link>
                <description><![CDATA[The Event Loop is the system in JavaScript (via the browser or Node.js) that allows asynchronous operations like setTimeout, file reading, or HTTP requests to work without blocking the main thread.]]></description>
                                    <author><![CDATA[Dev MOKA <engamalahmed021@gmail.com>]]></author>
                                <guid>https://dev-moka.com/nodejs-event-loop</guid>
                <pubDate>Sat, 14 Jun 2025 01:01:12 +0000</pubDate>
                <enclosure
                    type="image/png"
                    url="http://dev-moka.com/storage/code/nodejs-logo-on-green-background.png"
                    length="0"
                />
                                    <category>Web Development</category>
                            </item>
                    <item>
                <title><![CDATA[The Power of CSS Variables (Custom Properties): A Developer's Guide to Maintainable and Themeable Stylesheets]]></title>
                <link>https://dev-moka.com/httpsdev-mokacom</link>
                <description><![CDATA[CSS Variables are a game-changer! 🚀 Simplify CSS, boost maintainability &amp; theming. Learn to write cleaner, more powerful stylesheets.]]></description>
                                    <author><![CDATA[Dev MOKA <engamalahmed021@gmail.com>]]></author>
                                <guid>https://dev-moka.com/httpsdev-mokacom</guid>
                <pubDate>Sun, 13 Apr 2025 10:05:54 +0000</pubDate>
                <enclosure
                    type="image/png"
                    url="http://dev-moka.com/storage/code/css-variables-post.png"
                    length="0"
                />
                                    <category>Web Development</category>
                            </item>
                    <item>
                <title><![CDATA[5 Quick Ways to Supercharge Your Website Performance with JavaScript]]></title>
                <link>https://dev-moka.com/5-quick-ways-to-supercharge-your-website-performance-with-javascript</link>
                <description><![CDATA[5 Quick Ways to Supercharge Your Website Performance with JavaScript]]></description>
                                    <author><![CDATA[Dev MOKA <engamalahmed021@gmail.com>]]></author>
                                <guid>https://dev-moka.com/5-quick-ways-to-supercharge-your-website-performance-with-javascript</guid>
                <pubDate>Sun, 23 Mar 2025 00:21:08 +0000</pubDate>
                <enclosure
                    type="image/png"
                    url="http://dev-moka.com/storage/code/react-hooks-a-beginner-friendly-guide-to-usestate-useeffect-and-usecontext-4.png"
                    length="0"
                />
                                    <category>Web Development</category>
                            </item>
                    <item>
                <title><![CDATA[Building Reusable React Components: A Step-by-Step Guide to Efficiency]]></title>
                <link>https://dev-moka.com/building-reusable-react-components-a-step-by-step-guide-to-efficiency</link>
                <description><![CDATA[Reusable components are essential in React development. They help you save time, reduce code duplication, and maintain consistent UI. This guide explains how to build a flexible React Button component step by step. You’ll learn to define props, structure logic, and style effectively, and follow best practices for reusability, maintainability, and sca]]></description>
                                    <author><![CDATA[Dev MOKA <engamalahmed021@gmail.com>]]></author>
                                <guid>https://dev-moka.com/building-reusable-react-components-a-step-by-step-guide-to-efficiency</guid>
                <pubDate>Fri, 21 Mar 2025 00:25:49 +0000</pubDate>
                <enclosure
                    type="image/png"
                    url="http://dev-moka.com/storage/code/react-hooks-a-beginner-friendly-guide-to-usestate-useeffect-and-usecontext-3.png"
                    length="0"
                />
                            </item>
                    <item>
                <title><![CDATA[Redux vs. Context API: Choosing the Right State Management for Your React App]]></title>
                <link>https://dev-moka.com/redux-vs-context-api-choosing-the-right-state-management-for-your-react-app</link>
                <description><![CDATA[Redux vs. Context API: Choosing the Right State Management for Your React App]]></description>
                                    <author><![CDATA[Dev MOKA <engamalahmed021@gmail.com>]]></author>
                                <guid>https://dev-moka.com/redux-vs-context-api-choosing-the-right-state-management-for-your-react-app</guid>
                <pubDate>Thu, 13 Mar 2025 04:00:13 +0000</pubDate>
                <enclosure
                    type="image/png"
                    url="http://dev-moka.com/storage/code/react-hooks-a-beginner-friendly-guide-to-usestate-useeffect-and-usecontext-2.png"
                    length="0"
                />
                            </item>
                    <item>
                <title><![CDATA[Common Mistakes to Avoid When Starting a New React Project]]></title>
                <link>https://dev-moka.com/common-mistakes-to-avoid-when-starting-a-new-react-project</link>
                <description><![CDATA[Launching a new React project? 🚀 Don't let common mistakes derail your progress! 😫 My latest article reveals key pitfalls to avoid in project setup, state management, tooling, performance, and accessibility. Set your project up for success from the start!]]></description>
                                    <author><![CDATA[Dev MOKA <engamalahmed021@gmail.com>]]></author>
                                <guid>https://dev-moka.com/common-mistakes-to-avoid-when-starting-a-new-react-project</guid>
                <pubDate>Mon, 10 Mar 2025 23:53:44 +0000</pubDate>
                <enclosure
                    type="image/png"
                    url="http://dev-moka.com/storage/code/react-hooks-a-beginner-friendly-guide-to-usestate-useeffect-and-usecontext-1.png"
                    length="0"
                />
                                    <category>Web Development</category>
                            </item>
                    <item>
                <title><![CDATA[React Hooks: A Beginner-Friendly Guide to useState, useEffect, and useContext]]></title>
                <link>https://dev-moka.com/react-hooks-a-beginner-friendly-guide-to-usestate-useeffect-and-usecontext</link>
                <description><![CDATA[Demystifying React Hooks for beginners! 🚀 Learn useState, useEffect, &amp; useContext with practical examples. Start building dynamic React apps today]]></description>
                                    <author><![CDATA[Dev MOKA <engamalahmed021@gmail.com>]]></author>
                                <guid>https://dev-moka.com/react-hooks-a-beginner-friendly-guide-to-usestate-useeffect-and-usecontext</guid>
                <pubDate>Sun, 09 Mar 2025 04:28:55 +0000</pubDate>
                <enclosure
                    type="image/png"
                    url="http://dev-moka.com/storage/code/react-hooks-a-beginner-friendly-guide-to-usestate-useeffect-and-usecontext.png"
                    length="0"
                />
                                    <category>Web Development</category>
                            </item>
            </channel>
</rss>
