<?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: Narinder Kumar</title>
    <description>The latest articles on DEV Community by Narinder Kumar (@narinder_kumar_62739e18d3).</description>
    <link>https://dev.to/narinder_kumar_62739e18d3</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4059124%2F19fd840a-fc19-46f7-8860-7104c58423a8.jpg</url>
      <title>DEV Community: Narinder Kumar</title>
      <link>https://dev.to/narinder_kumar_62739e18d3</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/narinder_kumar_62739e18d3"/>
    <language>en</language>
    <item>
      <title>How I Built a Free JSON to Excel Converter That Handles Nested JSON</title>
      <dc:creator>Narinder Kumar</dc:creator>
      <pubDate>Sun, 02 Aug 2026 13:20:02 +0000</pubDate>
      <link>https://dev.to/narinder_kumar_62739e18d3/how-i-built-a-free-json-to-excel-converter-that-handles-nested-json-fhb</link>
      <guid>https://dev.to/narinder_kumar_62739e18d3/how-i-built-a-free-json-to-excel-converter-that-handles-nested-json-fhb</guid>
      <description>&lt;p&gt;If you've worked with APIs, you've probably received JSON responses that needed to be shared with non-technical users. While developers are comfortable reading JSON, most business users prefer Excel.&lt;/p&gt;

&lt;p&gt;I often found myself converting API responses into spreadsheets for testing, reporting, and debugging. Existing online tools either had file-size limits, required sign-ups, or struggled with nested JSON.&lt;/p&gt;

&lt;p&gt;That motivated me to build a free JSON to Excel converter.&lt;/p&gt;

&lt;p&gt;Why Convert JSON to Excel?&lt;/p&gt;

&lt;p&gt;Here are a few common scenarios:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Export API responses for business teams.&lt;/li&gt;
&lt;li&gt;Analyze data using Excel filters and pivot tables.&lt;/li&gt;
&lt;li&gt;Share information with clients.&lt;/li&gt;
&lt;li&gt;Verify API responses during testing.&lt;/li&gt;
&lt;li&gt;Create reports from JSON datasets.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Challenges I Faced&lt;/p&gt;

&lt;p&gt;Building a converter sounds simple until you encounter real-world JSON.&lt;/p&gt;

&lt;p&gt;Some of the biggest challenges were:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Nested objects&lt;/li&gt;
&lt;li&gt;Arrays inside objects&lt;/li&gt;
&lt;li&gt;Missing properties&lt;/li&gt;
&lt;li&gt;Large datasets&lt;/li&gt;
&lt;li&gt;Different data types&lt;/li&gt;
&lt;li&gt;Invalid JSON input&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A good converter should gracefully handle all of these cases.&lt;/p&gt;

&lt;p&gt;My Approach&lt;/p&gt;

&lt;p&gt;The converter performs the following steps:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Validate the JSON.&lt;/li&gt;
&lt;li&gt;Parse the data.&lt;/li&gt;
&lt;li&gt;Flatten nested objects into column names.&lt;/li&gt;
&lt;li&gt;Convert arrays into readable values.&lt;/li&gt;
&lt;li&gt;Generate an Excel workbook.&lt;/li&gt;
&lt;li&gt;Allow users to download the file instantly.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This approach works well for most API responses.&lt;/p&gt;

&lt;p&gt;Features&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No registration required&lt;/li&gt;
&lt;li&gt;Works directly in the browser&lt;/li&gt;
&lt;li&gt;Supports nested JSON&lt;/li&gt;
&lt;li&gt;Handles arrays&lt;/li&gt;
&lt;li&gt;Fast conversion&lt;/li&gt;
&lt;li&gt;Free to use&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Lessons Learned&lt;/p&gt;

&lt;p&gt;Building this project taught me that usability is just as important as functionality.&lt;/p&gt;

&lt;p&gt;Helpful error messages, clean output, and a simple interface make a much bigger difference than adding dozens of advanced options.&lt;/p&gt;

&lt;p&gt;Try It&lt;/p&gt;

&lt;p&gt;If you'd like to try the converter, you can use it here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.convertonlinetool.com/convert/json-to-excel" rel="noopener noreferrer"&gt;https://www.convertonlinetool.com/convert/json-to-excel&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love to hear your feedback or suggestions for additional features. If you've built a similar utility, feel free to share your experience in the comments.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>json</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
