---
title: "Bader Idris - Personal Bio &amp; Experience | Bio | Bader Idris"
canonical_url: "https://baderidris.com/about/hobbies/bio"
last_updated: "2026-06-14T09:44:21.245Z"
locale: en
meta:
  description: "Discover my journey as a Full Stack Developer, from early learning to mastering Nuxt, Node, and DevOps to build scalable digital solutions."
  "og:description": "Discover my journey as a Full Stack Developer, from early learning to mastering Nuxt, Node, and DevOps to build scalable digital solutions."
  "og:title": "Bader Idris - Personal Bio & Experience"
  "twitter:description": "Discover my journey as a Full Stack Developer, from early learning to mastering Nuxt, Node, and DevOps to build scalable digital solutions."
  "twitter:title": "Bader Idris - Personal Bio & Experience"
---

I started my programming journey on June 15, 2022, which means I've been honing my skills for 3 years and 11 months.

Since then, I've gained solid expertise in:

✅Web Development: Mastered HTML5, CSS3, and JavaScript to build dynamic, responsive websites. I then expanded intoVue.js (Composition API and Vue Router 4), to create sophisticated front-end applications.

✅Backend Development: I built five back-end projects usingNode.js, Express.js, and MongoDB as part of the FreeCodeCamp curriculum. This journey helped me gain a strong foundation in creating RESTful APIs and deploying full-stack applications.

✅Database Management: After learningMongoDB, furthered my knowledge withPostgreSQL (PSQL), focusing on scalable and secure data solutions.

✅DevOps & Deployment: I became proficient withDocker, deploying containerized applications, and configuring servers withNginx. I've also gained skills inDevOps workflows to automate, optimize, and manage deployments efficiently.

✅Cross-Platform Development: I leveragedCapacitor.js andElectron to build applications that work seamlessly across web, mobile (iOS/Android), and desktop (Windows/Mac/Linux).

As a versatile full-stack developer, I combine my technical knowledge with creativity to deliver scalable, secure, and efficient solutions for modern digital challenges. Let's collaborate to bring your ideas to life!

![personal-img](https://baderidris.com/imgs/meTwentyFour.jpg)

@bader-idris

created 37 months ago

```javascript
  /**
   * Standardized High-Premium Function
   */
  const pigIt = (str) => {
    return str.split(' ').map(e => {
      return e.length > 0 && !e.match(/[!?@#$%^&*]/)
        ? e.substring(1) + e.slice(0, 1) + 'ay'
        : e;
    }).join(' ');
  };

  // Test the output
  console.log(pigIt('Pig latin is cool !'));
```