<?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: Viktor Durnev</title>
    <description>The latest articles on DEV Community by Viktor Durnev (@viktor_durnev_2f9ddc603e1).</description>
    <link>https://dev.to/viktor_durnev_2f9ddc603e1</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%2F3350867%2F631f3978-f75f-4811-8ad8-dcd9f9dbce06.jpeg</url>
      <title>DEV Community: Viktor Durnev</title>
      <link>https://dev.to/viktor_durnev_2f9ddc603e1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/viktor_durnev_2f9ddc603e1"/>
    <language>en</language>
    <item>
      <title>A Practical Look at Adobe Commerce’s New Development Model</title>
      <dc:creator>Viktor Durnev</dc:creator>
      <pubDate>Sun, 13 Jul 2025 14:19:42 +0000</pubDate>
      <link>https://dev.to/viktor_durnev_2f9ddc603e1/a-practical-look-at-adobe-commerces-new-development-model-2jeo</link>
      <guid>https://dev.to/viktor_durnev_2f9ddc603e1/a-practical-look-at-adobe-commerces-new-development-model-2jeo</guid>
      <description>&lt;p&gt;Adobe Commerce is entering a new era - the platform is becoming faster, more modular, and easier to extend – but this transition also changes the way we, as engineers and architects, work.&lt;/p&gt;

&lt;p&gt;This isn’t about just faster deployments or nicer APIs. It’s about making Adobe Commerce a viable, modern, and scalable platform in a world where time-to-market and developer efficiency matter more than ever.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Cost of Complexity
&lt;/h2&gt;

&lt;p&gt;Traditional Adobe Commerce development tightly couples business logic with platform internals. Customizations share infrastructure and codebase with the core system, which means every change must conform to the same strict platform development standards - abstraction (Dependency Injections), strict extending interfaces, XML coding.&lt;/p&gt;

&lt;p&gt;This level of rigor is reasonable for platform maintainers. But for everyday solution builders, it creates friction: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Minor features take too long to implement&lt;/li&gt;
&lt;li&gt;Core upgrades become a nightmare of dependency and compatibility&lt;/li&gt;
&lt;li&gt;Integrations (like ERP) turn into full-blown projects just to set up queues, schedulers, and cron jobs before the actual logic even begins&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result? Slower delivery and higher budgets - in today’s market, that’s &lt;strong&gt;no longer competitive&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Architecture Behind the Shift
&lt;/h2&gt;

&lt;p&gt;Adobe’s transition to a service-first model, led by App Builder, advanced APIs, and an event-driven development (EDD) environment – changed the game. &lt;/p&gt;

&lt;p&gt;Instead of embedding code inside the core platform, developers now build external applications that respond to business events via asynchronous Adobe I/O triggers or synchronous webhooks. This decouples custom logic from Magento’s internals - freeing teams from the strict platform development standards.&lt;/p&gt;

&lt;p&gt;It’s not just a technical shift - it’s &lt;strong&gt;architectural freedom&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;These apps:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Run independently from Adobe Commerce, reducing risk, improving performance, and simplifying maintenance&lt;/li&gt;
&lt;li&gt;Skip the usual structural overhead and get straight to logic&lt;/li&gt;
&lt;li&gt;Rely on a consistent API layer, so both internal tools and third-party systems communicate the same way&lt;/li&gt;
&lt;li&gt;Use a Node.js development environment, making full-stack development more accessible and scalable&lt;/li&gt;
&lt;li&gt;Offload custom workloads to separate infrastructure, allowing the core platform to focus on commerce operations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;On one project, we used App Builder to connect Narvar with our ERP – without ever touching the core platform.&lt;/p&gt;

&lt;p&gt;On another, we rapidly built a proof-of-concept for a new payment gateway - validating the integration approach early, without the overhead typical in traditional Magento development. This kind of architectural freedom lets teams de-risk delivery by testing/PoC critical flows before committing to full implementation.&lt;/p&gt;

&lt;p&gt;This model doesn’t just reduce friction. it unlocks delivery velocity, staffing flexibility, and smarter allocation of engineering effort.&lt;/p&gt;

&lt;h2&gt;
  
  
  Worth a Closer Look
&lt;/h2&gt;

&lt;p&gt;I was genuinely excited to try App Builder and that was part of the problem. Adobe doesn’t offer public access: only Adobe Commerce Cloud clients can use it. That seriously slows down adoption and engineering community growth. I truly hope Adobe reconsiders this approach and makes the tooling more accessible in the near future.&lt;/p&gt;

&lt;p&gt;When we finally got access, what impressed me most was the simplicity of implementation and the flexibility of the environment. And more importantly, AI became a much more effective coding assistant – unlike the legacy model where structural complexity limits its value.&lt;/p&gt;

&lt;p&gt;If you're just starting, I’d recommend picking a small use case. For example, we extended backorder logic by adding a backorder threshold:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Added a new product attribute&lt;/li&gt;
&lt;li&gt;Subscribed to the After Order Place event&lt;/li&gt;
&lt;li&gt;Queried product data using GraphQL&lt;/li&gt;
&lt;li&gt;Used the REST API to set items to out-of-stock when the threshold was reached&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;As you can see, it's easy to start small and even that gives you a clear understanding of the new model. Continuing with the legacy architecture will only increase the time and cost of a future SaaS migration.&lt;/p&gt;

&lt;p&gt;Right now, I don’t see any major architectural bottlenecks that would prevent adopting this approach. It’s simple and, as a consequence, highly reliable.&lt;/p&gt;

&lt;h2&gt;
  
  
  From Exploration to Readiness
&lt;/h2&gt;

&lt;p&gt;If you're running on Adobe Commerce Cloud, I strongly recommend exploring App Builder. Start small, get familiar – especially if you're planning any future integrations. &lt;/p&gt;

&lt;p&gt;Even limited adoption now can significantly reduce the cost and complexity of your future SaaS migration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;The earlier you start, the easier it gets.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;source &lt;a href="https://www.linkedin.com/pulse/practical-look-adobe-commerces-new-development-model-viktor-durnev-an26f" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;




&lt;p&gt;Summary:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Platform: Adobe Commerce (Magento 2)&lt;/li&gt;
&lt;li&gt;Focus: Transition to SaaS (EDS, App Builder, Catalog Service, Adobe I/O, EDD, Events)&lt;/li&gt;
&lt;li&gt;Use Cases: Faster development, reduced TCO, scalable architecture&lt;/li&gt;
&lt;li&gt;Related terms: API-first, headless, serverless, Edge Delivery Services, EDD, Commerce as a Service&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;tags: AdobeCommerce, SaaS, microservices, Edge Delivery Services, EDS, Magento, App Builder, Adobe Commerce As Service, Adobe I/O&lt;/p&gt;

</description>
      <category>adobecommerce</category>
      <category>appbuilder</category>
      <category>adobecommercesaas</category>
      <category>adobeio</category>
    </item>
    <item>
      <title>Adobe Commerce Enters a New Era</title>
      <dc:creator>Viktor Durnev</dc:creator>
      <pubDate>Sun, 13 Jul 2025 13:58:54 +0000</pubDate>
      <link>https://dev.to/viktor_durnev_2f9ddc603e1/adobe-commerce-enters-a-new-era-5boh</link>
      <guid>https://dev.to/viktor_durnev_2f9ddc603e1/adobe-commerce-enters-a-new-era-5boh</guid>
      <description>&lt;p&gt;Over the last several years, Adobe has strategically invested in its eCommerce platform, consistently delivering brand-new and enhanced existing business tools to propel business growth.&lt;/p&gt;

&lt;p&gt;Unlike a disruptive revolution, Adobe has opted for a step-by-step evolution, methodically combining proven enterprise products into a comprehensive suite of commerce solutions. The expansion of business services within Adobe Experience Cloud has been a steady process since 2017. Adobe Commerce, with its strong enterprise background, has become a central pillar in this gradual evolution, ultimately seeing Adobe Experience Cloud transform from a collection of individual products into a unified ecosystem. &lt;/p&gt;

&lt;p&gt;The introduction of Adobe &lt;a href="https://www.linkedin.com/pulse/adobe-app-builder-commerce-viktor-durnev-gcere" rel="noopener noreferrer"&gt;App Builder&lt;/a&gt; in 2021 and &lt;a href="https://www.linkedin.com/pulse/adobe-commerce-edge-delivery-services-viktor-durnev-cf8ke/" rel="noopener noreferrer"&gt;Edge Delivery Services&lt;/a&gt; (EDS) in 2024 was an important step, acting as a strong signal for the future evolution of Adobe Commerce. These provided essential building blocks for a composable and extensible architecture.&lt;/p&gt;

&lt;p&gt;Now, with &lt;a href="https://business.adobe.com/resources/sdk/drive-organic-growth-and-maximize-conversions-with-adobe-commerce.html" rel="noopener noreferrer"&gt;Adobe Commerce as a Cloud Service&lt;/a&gt;, this transformation reaches its next level.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Big Shift: Commerce as a Service
&lt;/h2&gt;

&lt;p&gt;With the upcoming release, Adobe Commerce moves away from its open-source code access roots. While open-source once offered flexibility, it also came with high maintenance costs and complex upgrade cycles, placing a burden on businesses. With Adobe’s shift to an API-first model, platform support is now fully managed by Adobe.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why is this important?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Lower TCO&lt;/strong&gt;: Businesses no longer need to allocate resources for platform support, allowing them to redirect efforts toward strategic initiatives.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Instant Security Updates&lt;/strong&gt;: Security updates are seamlessly deployed by Adobe as soon as they become available, ensuring businesses always operate on a secure and reliable platform.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Versionless&lt;/strong&gt;: Continuous updates provide businesses with immediate access to new features as soon as Adobe releases them, ensuring they always benefit from the latest innovations.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Performance boost&lt;/strong&gt;: Controlled API utilization enhances system efficiency and scalability.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  But What About Customization?
&lt;/h2&gt;

&lt;p&gt;Custom features in Adobe Commerce no longer share the same codebase with the platform. Instead, flexibility is now provided through an API-first approach, serverless extensions, and an app-driven ecosystem. Shopify has already demonstrated that an app-based approach ensures businesses have the flexibility to satisfy all their needs while significantly reducing development costs. Adobe took this to the next level by launching App Builder, a serverless development platform that enables custom features without infrastructure headaches.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key benefits:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Universal Layer&lt;/strong&gt;: App can be utilized for a platform extension or as independent middleware, offering secure endpoints that allow any system, not just Adobe Commerce, to send events for processing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reliable &amp;amp; Predictable API&lt;/strong&gt;: Adobe Commerce API remains consistent over time, ensuring reliability and long-term compatibility while offering GraphQL flexibility.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Serverless Solution&lt;/strong&gt;: Eliminates infrastructure costs and self-hosting challenges, with Adobe App Builder enabling seamless, event-driven extensions for Adobe Commerce.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unified Engineering&lt;/strong&gt;: By leveraging JavaScript at its core, this solution ensures easier access to skilled developers and enhances cross-platform agility, eliminating rigid technology lock-ins like PHP.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Extensibility Toolkit&lt;/strong&gt;: A robust set of development tools, including API gateway, UI SDKs, webhooks, event hub, and more. Low-code solutions and marketplace apps further accelerate deployment, enabling faster time-to-market.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Performance Meets Scalability&lt;/strong&gt;&lt;br&gt;
A fast storefront is no longer optional - it’s a competitive necessity. EDS (Edge Delivery Services) addresses this challenge, delivering unmatched performance and simplified development with a JavaScript framework-agnostic approach. However, in enterprise commerce speed alone isn’t enough and that’s where Adobe Experience Cloud plays a crucial role.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Power of the Adobe Experience Cloud Ecosystem&lt;/strong&gt;&lt;br&gt;
A great website is a starting point, but in today's demanding eCommerce landscape, businesses need more. A robust ecosystem of tools is essential for effective growth. Industry leaders like Salesforce have long understood this, providing comprehensive solutions like CDP/CRM, Marketing Cloud, and Service Cloud to enable personalized, customer-centric sales strategies. Understanding the increasing need for such capabilities among businesses, Adobe began developing its own connected suite of business solutions within the Adobe Experience Cloud.&lt;/p&gt;

&lt;p&gt;Here are some of the key products within Adobe Experience Cloud:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Analytics&lt;/strong&gt; for deep data insights and performance tracking&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Real-Time CDP&lt;/strong&gt; for unified customer intelligence and segmentation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Journey Optimizer&lt;/strong&gt; for orchestrating personalized customer journeys&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Target&lt;/strong&gt; for AI-driven A/B testing and experience personalization&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Campaign&lt;/strong&gt; for cross-channel marketing automation&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Experience Manager&lt;/strong&gt; (AEM) for enterprise content management and digital experiences&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Workfront&lt;/strong&gt; for marketing workflow automation and project management&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Marketo Engage&lt;/strong&gt; for B2B and B2C lead nurturing and automated marketing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adobe Advertising Cloud&lt;/strong&gt; for AI-driven advertising automation across search, display, video, and connected TV&lt;/li&gt;
&lt;/ul&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%2Flocntua42d3blhuvdu7l.png" 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%2Flocntua42d3blhuvdu7l.png" alt="Adobe Commerce Ecosystem" width="800" height="472"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;a href="https://drive.google.com/file/d/1PXhI0QfS4lo_LSh2FOtkMri1n7c2Fir_/view" rel="noopener noreferrer"&gt;&lt;em&gt;click to zoom&lt;/em&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This is more than just a technological upgrade - it's a strategic move that positions Adobe as a global leader in enterprise commerce and unlocks incredible innovation potential. Businesses benefit from a modern, low-maintenance platform brimming with a powerful commerce ecosystem, while system integrators receive a cutting-edge foundation for building composable, MACH-inspired solutions that lead to highly scalable and agile storefronts. &lt;/p&gt;

&lt;p&gt;Exciting times ahead 🚀&lt;/p&gt;

&lt;p&gt;&lt;em&gt;source &lt;a href="https://www.linkedin.com/pulse/adobe-commerce-enters-new-era-viktor-durnev-tvrde" rel="noopener noreferrer"&gt;LinkedIn&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>adobecommerce</category>
      <category>eds</category>
      <category>appbuilder</category>
      <category>adobecommercesaas</category>
    </item>
  </channel>
</rss>
