<?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: teja adusumilli</title>
    <description>The latest articles on DEV Community by teja adusumilli (@teja_adusumilli_474e97082).</description>
    <link>https://dev.to/teja_adusumilli_474e97082</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%2F3981463%2F1b081b9a-d5c9-48bd-9f3e-ffb98e74ea32.png</url>
      <title>DEV Community: teja adusumilli</title>
      <link>https://dev.to/teja_adusumilli_474e97082</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/teja_adusumilli_474e97082"/>
    <language>en</language>
    <item>
      <title>I Built a Full Apex IDE Inside a Chrome Extension (No Java, No Local Setup)</title>
      <dc:creator>teja adusumilli</dc:creator>
      <pubDate>Fri, 12 Jun 2026 15:05:40 +0000</pubDate>
      <link>https://dev.to/teja_adusumilli_474e97082/i-built-a-full-apex-ide-inside-a-chrome-extension-no-java-no-local-setup-eb3</link>
      <guid>https://dev.to/teja_adusumilli_474e97082/i-built-a-full-apex-ide-inside-a-chrome-extension-no-java-no-local-setup-eb3</guid>
      <description>&lt;h2&gt;
  
  
  The Problem with the Existing Apex Workflow
&lt;/h2&gt;

&lt;p&gt;If you've done any meaningful Apex development, you know the drill:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open Salesforce Developer Console (slow, clunky, no PMD)&lt;/li&gt;
&lt;li&gt;Switch to VS Code + Salesforce Extension Pack (heavy, requires local setup)&lt;/li&gt;
&lt;li&gt;Run PMD separately with a Java runtime (extra install, extra config)&lt;/li&gt;
&lt;li&gt;Run tests via SFDX CLI (terminal required)&lt;/li&gt;
&lt;li&gt;Repeat across orgs&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Every step is friction. And if you're working across multiple orgs or on a machine that isn't fully set up, that friction compounds fast.&lt;/p&gt;

&lt;p&gt;I wanted something simpler: &lt;strong&gt;open Chrome, open my Salesforce org, start coding&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://chromewebstore.google.com/detail/apexforge/dbnjgjjlmlggdbgepnmmfaldhfccalch" rel="noopener noreferrer"&gt;ApexForge&lt;/a&gt; is a Chrome extension that brings a full Apex development environment directly into your browser. No IDE. No CLI. No Java.&lt;/p&gt;

&lt;p&gt;Here's what it does:&lt;/p&gt;

&lt;h3&gt;
  
  
  📂 Apex File Explorer
&lt;/h3&gt;

&lt;p&gt;Browse every Apex Class and Trigger in your connected org. Search, sort, open files in the editor, or jump to the Salesforce record page — all without leaving the extension.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✏️ Code Editor (VS Code-like)
&lt;/h3&gt;

&lt;p&gt;A fully featured editor inside the popup:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Apex syntax highlighting (keywords, SOQL, methods)&lt;/li&gt;
&lt;li&gt;Find (&lt;code&gt;Ctrl+F&lt;/code&gt;) and Find &amp;amp; Replace (&lt;code&gt;Ctrl+H&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Go to Line (&lt;code&gt;Ctrl+G&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Minimap, Split View, Word Wrap&lt;/li&gt;
&lt;li&gt;Format Document&lt;/li&gt;
&lt;li&gt;Save &amp;amp; Deploy directly to your org&lt;/li&gt;
&lt;li&gt;Refresh from org at any time&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔍 PMD Analysis — In the Browser, No Java Required
&lt;/h3&gt;

&lt;p&gt;This was the hardest part to build. PMD normally requires a Java runtime and a JAR file. I ported 12 PMD rules across 6 categories to run entirely in JavaScript inside the extension:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;Rules&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Performance&lt;/td&gt;
&lt;td&gt;AvoidSoqlInLoops, AvoidDmlInLoops&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Error Prone&lt;/td&gt;
&lt;td&gt;AvoidHardcodingId, EmptyCatchBlock, NullAssignment&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Best Practices&lt;/td&gt;
&lt;td&gt;ApexUnitTestClassShouldHaveAsserts, AvoidGlobalModifier&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Security&lt;/td&gt;
&lt;td&gt;ApexSharingViolations, ApexCRUDViolation&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Code Size&lt;/td&gt;
&lt;td&gt;ExcessiveClassLength, TooManyFields&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Design&lt;/td&gt;
&lt;td&gt;AvoidDeeplyNestedIfStmts&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Run analysis on a single file or scan your entire org in one pass. Click any violation to jump to that exact line in the editor.&lt;/p&gt;

&lt;h3&gt;
  
  
  ▶ Apex Test Runner
&lt;/h3&gt;

&lt;p&gt;Execute unit tests without opening a terminal:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Async execution via &lt;code&gt;runTestsAsynchronous&lt;/code&gt; with a live progress bar&lt;/li&gt;
&lt;li&gt;Sync execution via &lt;code&gt;runTestsSynchronous&lt;/code&gt; for quick feedback&lt;/li&gt;
&lt;li&gt;Auto-detects test classes by naming convention&lt;/li&gt;
&lt;li&gt;Pass / Fail / Skip badges with stack traces&lt;/li&gt;
&lt;li&gt;Code coverage visualisation — per test class and aggregate&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  💡 Apex Advisor
&lt;/h3&gt;

&lt;p&gt;Real-time analysis as you type. Detects:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Bulkification issues&lt;/li&gt;
&lt;li&gt;Missing sharing declarations&lt;/li&gt;
&lt;li&gt;SOQL/SOSL/DML patterns&lt;/li&gt;
&lt;li&gt;Method signature problems&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Comes with auto-fix suggestions and code snippet templates.&lt;/p&gt;




&lt;h2&gt;
  
  
  Security &amp;amp; Privacy
&lt;/h2&gt;

&lt;p&gt;I care about this a lot, especially since the extension touches Salesforce session data:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Session IDs stored in &lt;code&gt;chrome.storage.local&lt;/code&gt; — encrypted by the OS keychain&lt;/li&gt;
&lt;li&gt;All API calls use HTTPS — no plaintext&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;No data sent to any third-party server. Ever.&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;No analytics. No telemetry. No backend services.&lt;/li&gt;
&lt;li&gt;Network access scoped only to &lt;code&gt;*.salesforce.com&lt;/code&gt; and &lt;code&gt;*.force.com&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;The editor runs in a sandboxed iframe&lt;/li&gt;
&lt;li&gt;Your Apex code never leaves your browser except to your own Salesforce org&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Install ApexForge and pin it to your Chrome toolbar&lt;/li&gt;
&lt;li&gt;Open any Salesforce app from the App Launcher&lt;/li&gt;
&lt;li&gt;Click the ApexForge icon — it auto-detects your org from the active tab&lt;/li&gt;
&lt;li&gt;Browse, edit, analyse, and test your Apex&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The only requirement is a valid Salesforce Session ID (obtainable from Developer Console, DevTools, or SFDX CLI) and API access enabled on your org.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why I'm Sharing This
&lt;/h2&gt;

&lt;p&gt;I built this as a personal tool and kept making it better. At some point it felt like something the Salesforce developer community could genuinely use — especially for quick edits, code reviews on the go, or orgs where you can't install a full local dev environment.&lt;/p&gt;

&lt;p&gt;It's &lt;strong&gt;free and open source&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://chromewebstore.google.com/detail/apexforge/dbnjgjjlmlggdbgepnmmfaldhfccalch" rel="noopener noreferrer"&gt;Install ApexForge on the Chrome Web Store&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌐 &lt;a href="https://apexforge.free.nf" rel="noopener noreferrer"&gt;apexforge.free.nf&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;If you work with Salesforce Apex regularly, give it a try. I'd love feedback — what rules are missing from the PMD analyser, what editor features you'd want, anything.&lt;/p&gt;

&lt;p&gt;Drop a comment or reach out directly. Happy to discuss the technical implementation too if anyone's curious how the browser-native PMD port works.&lt;/p&gt;

</description>
      <category>salesforce</category>
      <category>apex</category>
      <category>chromeextension</category>
      <category>devtools</category>
    </item>
  </channel>
</rss>
