Hi, I'm Mubashir,
a Dedicated Developer.

I am Front-End_

I build high-performance websites and e-commerce solutions. With 3+ years of experience and 50+ successful projects, I help businesses grow online.

Mubashir Portfolio

3+

Years of Experience

With over 3 years of experience, I have completed a wide range of projects, specializing in web development and Shopify solutions.

17+

Projects Completed

5+

React Web Apps

11+

Shopify Stores

1,100+

Lines of Code

Code Comparison

Before
// ❌ Bad API Call: Potential race conditions & memory leaks
const FetchComponent = ({ userId }) => {
  const [userData, setUserData] = useState(null);
  const [loading, setLoading] = useState(true);

  useEffect(() => {
    setLoading(true);
    fetch(`https://api.example.com/user/${userId}`)
      .then(response => response.json())
      .then(data => {
        setUserData(data);
        setLoading(false);
      });

  }, [userId]);

  return (
    <div>
      {loading ? "Loading..." : <pre>{JSON.stringify(userData, null, 2)}</pre>}
    </div>
  );
};
After
// ✅ Proper API Handling with AbortController
const FetchComponent = ({ userId }) => {
  const [userData, setUserData] = useState(null);
  const [loading, setLoading] = useState(true);

  useEffect(() => {
    const controller = new AbortController();
    const signal = controller.signal;

    setLoading(true);
    fetch(`https://api.example.com/user/${userId}`, { signal })
      .then(response => response.json())
      .then(data => {
        if (!signal.aborted) {
          setUserData(data);
          setLoading(false);
        }
      })
      .catch(error => {
        if (error.name !== "AbortError") {
          console.error("Fetch error:", error);
        }
      });

    return () => controller.abort();

  }, [userId]);

  return (
    <div>
      {loading ? "Loading..." : <pre>{JSON.stringify(userData, null, 2)}</pre>}
    </div>
  );
};

My Skills

Expertise in modern web technologies with a strong focus on performance and scalability.

HTML & CSS JavaScript (ES6+) React.js Node.js Shopify Liquid

HTML & CSS

90%

JavaScript (ES6+)

75%

React.js

85%

Node.js

70%

Shopify Liquid

80%

Resume

Senior Shopify Developer - Remote Opus

Sep 24 - Present

  • Building modern Shopify stores using Hydrogen & custom theme templates.
  • Developing scalable custom logic with JavaScript and Liquid.
  • Delivering blazing fast, optimized performance for storefronts.
  • Integrating complex features tailored to client needs.

Top Rated Shopify Developer - Upwork

Freelance

  • Achieved Top Rated badge within just 3 months of freelancing.
  • Successfully delivered 30+ jobs in the first 6 months.
  • Offering services in store development, performance optimization, and custom solutions.
  • Consistently maintaining 100% client satisfaction with repeat business.

Shopify Front-End Developer - AfricanNetwork

Freelance

  • Crafted sleek, responsive Shopify storefronts with a focus on UX.
  • Integrated APIs and third-party tools for added functionality.
  • Assisted in migrating legacy themes to modern Shopify OS 2.0 structure.
  • Ensured performance optimization and mobile-first compatibility.

Senior Shopify Developer - ZBM Tech

March 2024 - June 2024

  • Liquid debugging and advanced Shopify functionality builds.
  • Tight remote team collaboration for faster sprints.
  • Built highly customized store experiences.
  • Keeping up with Shopify's latest tools & trends.

Shopify Developer - Meta Tech

September 2023 - March 2024

  • Led Shopify theme development and custom app integrations.
  • Collaborated with cross-functional teams to ship new features.
  • Provided ongoing technical support and proactive fixes.
  • Implemented latest updates from Shopify ecosystem.

My Projects

Custom Hrm System with Ai Integrated

Custom Hrm System with Ai Integrated

ReactTailwindCSSJavaScriptNode JsMongo DB
Aboe Safiya Islamic Store

Aboe Safiya Islamic Store

ReactTailwindCSSJavaScript
African Network

African Network

ReactTailwindCSSJavaScriptLiquid
Baltistan Organic Dry Fruits

Baltistan Organic Dry Fruits

ShopifyLiquidCSS
InnoSync Business Portfolio

InnoSync Business Portfolio

HTMLCSSJavaScript
Mens One Health – Healthcare Platform

Mens One Health – Healthcare Platform

ReactReduxJavaScript
Try Nood – Wellness Shopify Store

Try Nood – Wellness Shopify Store

ShopifyLiquidJavaScript
Roll On Jade – Beauty Landing Page

Roll On Jade – Beauty Landing Page

HTMLCSSJavaScript
Plane Sports Cards – React Shop

Plane Sports Cards – React Shop

ReactAxiosJavaScript
Rads2 Plumbers – Shopify Services

Rads2 Plumbers – Shopify Services

ShopifyLiquidCSS
Cubelink Admin Dashboard – Vue.js

Cubelink Admin Dashboard – Vue.js

Vue.jsVuexCSS