<?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: Syed Najam Abbas Naqvi</title>
    <description>The latest articles on DEV Community by Syed Najam Abbas Naqvi (@dumbdev1).</description>
    <link>https://dev.to/dumbdev1</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%2F3501158%2Fd1bab563-587f-4b6b-aed5-357f3b8988fc.png</url>
      <title>DEV Community: Syed Najam Abbas Naqvi</title>
      <link>https://dev.to/dumbdev1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dumbdev1"/>
    <language>en</language>
    <item>
      <title>What’s the toughest API benchmarking challenge you’ve faced?</title>
      <dc:creator>Syed Najam Abbas Naqvi</dc:creator>
      <pubDate>Tue, 31 Mar 2026 18:58:00 +0000</pubDate>
      <link>https://dev.to/dumbdev1/whats-the-toughest-api-benchmarking-challenge-youve-faced-4nh0</link>
      <guid>https://dev.to/dumbdev1/whats-the-toughest-api-benchmarking-challenge-youve-faced-4nh0</guid>
      <description>&lt;p&gt;Drop your thoughts below — let’s discuss how Glockit can help streamline your workflow!&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 Introducing Glockit: Benchmark REST APIs with Ease
&lt;/h2&gt;

&lt;p&gt;If you’ve ever struggled with benchmarking REST APIs, juggling request chaining, or managing concurrency, you’ll love Glockit — a lightweight TypeScript CLI and library designed to make API performance testing simple, powerful, and developer-friendly.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔑 Why Glockit?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Request Chaining:&lt;/strong&gt; Extract variables from one response and reuse them in subsequent requests.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Concurrent Execution:&lt;/strong&gt; Run multiple requests in parallel with configurable concurrency.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Zero Dependencies:&lt;/strong&gt; Built with minimal external dependencies for reliability.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Real-time Progress Tracking:&lt;/strong&gt; Clean console-based progress bars.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Flexible Execution Modes:&lt;/strong&gt; Benchmark by request count or duration.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-format Output:&lt;/strong&gt; Export results in JSON and CSV for deeper analysis.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  ⚡ Quick Start
&lt;/h2&gt;

&lt;p&gt;Install globally for CLI usage:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; glockit
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Create a simple &lt;code&gt;benchmark.json&lt;/code&gt;:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"E-Commerce API Benchmark"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"global"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"baseUrl"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"https://api.example.com/v1"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"maxRequests"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;100&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"concurrent"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;10&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"endpoints"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"User Login"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"/auth/login"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"method"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"POST"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"body"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"email"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"test@example.com"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"password"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"test123"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"variables"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"authToken"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"path"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"token"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"from"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"response"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;}]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Get Products"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"url"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"/products"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"method"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"GET"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"headers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nl"&gt;"Authorization"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Bearer {{authToken}}"&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;},&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"dependencies"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"User Login"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Run the benchmark:&lt;br&gt;
&lt;code&gt;npx glockit run --config benchmark.json --save&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  📊 Example Output
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;✅ Total Requests: 100&lt;/li&gt;
&lt;li&gt;⏱️ Total Time: 1.25s&lt;/li&gt;
&lt;li&gt;📈 Requests per Second: 80&lt;/li&gt;
&lt;li&gt;✅ Success Rate: 98%&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Results are saved in JSON and CSV for easy analysis.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠️ Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Load testing your API workflows&lt;/li&gt;
&lt;li&gt;Validating authentication + chained requests&lt;/li&gt;
&lt;li&gt;Comparing performance across environments&lt;/li&gt;
&lt;li&gt;Generating reproducible benchmark reports&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  🌟 Get Involved
&lt;/h2&gt;

&lt;p&gt;Glockit is open-source under MIT license. Contributions, feedback, and stars are welcome!&lt;br&gt;
&lt;a href="https://github.com/dumbdev/glockit" rel="noopener noreferrer"&gt;👉 Check out the repo&lt;/a&gt;&lt;/p&gt;

</description>
      <category>api</category>
      <category>discuss</category>
      <category>performance</category>
      <category>showdev</category>
    </item>
    <item>
      <title>Can i get some reviews about the design of my potfolio website?
Https://najamabbas.me</title>
      <dc:creator>Syed Najam Abbas Naqvi</dc:creator>
      <pubDate>Wed, 01 Oct 2025 15:24:10 +0000</pubDate>
      <link>https://dev.to/dumbdev1/can-i-get-some-reviews-about-the-design-of-my-potfolio-websitehttpsnajamabbasme-l2l</link>
      <guid>https://dev.to/dumbdev1/can-i-get-some-reviews-about-the-design-of-my-potfolio-websitehttpsnajamabbasme-l2l</guid>
      <description></description>
    </item>
  </channel>
</rss>
