<?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: Stephen Appah</title>
    <description>The latest articles on DEV Community by Stephen Appah (@stephen_42).</description>
    <link>https://dev.to/stephen_42</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3197911%2F2682310a-2782-4c6f-8836-d3f5682ba915.jpeg</url>
      <title>DEV Community: Stephen Appah</title>
      <link>https://dev.to/stephen_42</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/stephen_42"/>
    <language>en</language>
    <item>
      <title>From Junior to Confident Frontend Developer: Lessons from My Angular &amp; React Journey</title>
      <dc:creator>Stephen Appah</dc:creator>
      <pubDate>Wed, 23 Jul 2025 17:46:51 +0000</pubDate>
      <link>https://dev.to/stephen_42/from-junior-to-confident-frontend-developer-lessons-from-my-angular-react-journey-oh5</link>
      <guid>https://dev.to/stephen_42/from-junior-to-confident-frontend-developer-lessons-from-my-angular-react-journey-oh5</guid>
      <description>&lt;p&gt;As a junior frontend developer, navigating the ecosystem of modern web development can feel like entering a labyrinth. When I started with Angular and React, I was overwhelmed—frameworks, state management, component hierarchies, performance optimizations, testing—it was a lot to take in. But a few hard-earned lessons made all the difference.&lt;/p&gt;

&lt;p&gt;Today, I want to share the top lessons I’ve learned that helped me go from copying tutorials to building real-world apps with confidence.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧠 1. Don’t Skip the Fundamentals
&lt;/h2&gt;

&lt;p&gt;I used to rush into frameworks, but things only started to make sense when I circled back to JavaScript fundamentals.&lt;/p&gt;

&lt;p&gt;Knowing how the DOM, event bubbling, closures, and asynchronous JS work saved me from many bugs. For example:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// Before: Trouble understanding closures
function createCounter() {
  let count = 0;
  return function () {
    count++;
    return count;
  };
}

const counter = createCounter();
console.log(counter()); // 1
console.log(counter()); // 2
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Understanding how variables are scoped within closures helped me debug React state issues and Angular services.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚙️ 2. Angular and React Are Just Tools
&lt;/h2&gt;

&lt;p&gt;Each framework shines in its own way:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Angular&lt;/strong&gt; gives you a complete structure. It’s great for building enterprise-level apps. Dependency injection, services, RxJS, and routing are powerful once you grasp them.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;React&lt;/strong&gt; gives you freedom and flexibility. But with great power comes great decision fatigue—especially around routing, state management, and form handling.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I stopped treating them like opposing camps. Now, I pick the right tool for the job—or enjoy learning both.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧪 3. Testing Is a Superpower
&lt;/h2&gt;

&lt;p&gt;At first, I avoided writing tests. But after a few bugs slipped into production, I embraced unit tests with Jasmine (Angular) and React Testing Library.&lt;/p&gt;

&lt;p&gt;Writing tests helps me catch errors early and build with confidence.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// Angular - Jasmine test
it('should return user name', () =&amp;gt; {
  const name = component.getUserName();
  expect(name).toBe('Stephen');
});
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;// React - Testing Library
test('renders welcome message', () =&amp;gt; {
  render(&amp;lt;Welcome name="Stephen" /&amp;gt;);
  expect(screen.getByText(/Welcome, Stephen/i)).toBeInTheDocument();
});
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  🚀 4. Build Real Projects, Not Just Todo Lists
&lt;/h2&gt;

&lt;p&gt;I started building projects that solved real problems. Some examples:&lt;/p&gt;

&lt;p&gt;Pharmacy Locator App (Angular): Uses Google Maps API, SCSS, and Firebase&lt;br&gt;
Dashboard Admin App (React): Built with Tailwind, Firebase Auth, and reusable components&lt;br&gt;
Each project pushed me to research, refactor, and document better code.&lt;/p&gt;

&lt;h2&gt;
  
  
  🌐 5. Share What You Learn
&lt;/h2&gt;

&lt;p&gt;I started sharing lessons and insights on LinkedIn and GitHub. This has helped me:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Connect with other developers&lt;/li&gt;
&lt;li&gt;Learn from feedback&lt;/li&gt;
&lt;li&gt;Stay accountable&lt;/li&gt;
&lt;li&gt;Even a small tip or bug fix you learned can help someone else.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  👨‍💻 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;You don’t need to know everything to be a good frontend developer. But if you:&lt;/p&gt;

&lt;p&gt;✅ Understand core JavaScript.&lt;br&gt;
✅ Learn how your framework works under the hood.&lt;br&gt;
✅ Build real projects.&lt;br&gt;
✅ Write tests.&lt;br&gt;
✅ Share your journey.&lt;/p&gt;

&lt;p&gt;…you’ll grow faster than you think.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧰 Tools I Use
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Frameworks: Angular 18, React 18&lt;/li&gt;
&lt;li&gt;Styling: Tailwind, SCSS&lt;/li&gt;
&lt;li&gt;Auth &amp;amp; Backend: Firebase, Supabase&lt;/li&gt;
&lt;li&gt;Testing: Jasmine, Karma, React Testing Library&lt;/li&gt;
&lt;li&gt;Hosting: Netlify, Vercel&lt;/li&gt;
&lt;li&gt;Others: Git, GitHub, AI tools, ChatGPT&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🙌 Let’s Connect
&lt;/h2&gt;

&lt;p&gt;Want to follow my frontend dev journey or collaborate? 🔗 GitHub: github.com/Steph-en 🔗 LinkedIn: linkedin.com/in/stephen-boateng-appah&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8v15fmaft7r1c5d7p8dh.webp" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8v15fmaft7r1c5d7p8dh.webp" alt="Illustration of Frontend Developer" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
