<?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: Chintan Goswami</title>
    <description>The latest articles on DEV Community by Chintan Goswami (@imchintoo).</description>
    <link>https://dev.to/imchintoo</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%2F2742587%2Fe80ee78e-ab84-4c6a-a62b-0fe50f50bda4.png</url>
      <title>DEV Community: Chintan Goswami</title>
      <link>https://dev.to/imchintoo</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/imchintoo"/>
    <language>en</language>
    <item>
      <title>🚀 Released a New Version of jsdoc-scribe</title>
      <dc:creator>Chintan Goswami</dc:creator>
      <pubDate>Mon, 29 Jun 2026 11:02:04 +0000</pubDate>
      <link>https://dev.to/imchintoo/released-a-new-version-of-jsdoc-scribe-1ghl</link>
      <guid>https://dev.to/imchintoo/released-a-new-version-of-jsdoc-scribe-1ghl</guid>
      <description>&lt;p&gt;Keeping documentation updated is difficult, especially when projects continue to grow.&lt;/p&gt;

&lt;p&gt;To make this easier, I've been building jsdoc-scribe, an open-source CLI that generates JSDoc comments and beautiful HTML documentation automatically.&lt;/p&gt;

&lt;p&gt;The newest release includes several improvements aimed at making documentation generation faster and more reliable.&lt;/p&gt;

&lt;p&gt;Highlights&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Faster processing&lt;/li&gt;
&lt;li&gt;Improved JavaScript &amp;amp; TypeScript parsing&lt;/li&gt;
&lt;li&gt;Better HTML output&lt;/li&gt;
&lt;li&gt;Stability improvements&lt;/li&gt;
&lt;li&gt;Bug fixes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;My long-term vision is to build one of the most complete documentation generators for modern JavaScript ecosystems.&lt;/p&gt;

&lt;p&gt;NPM: &lt;a href="https://www.npmjs.com/package/jsdoc-scribe" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/jsdoc-scribe&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'd love feedback from the DEV Community.&lt;/p&gt;

&lt;p&gt;If you have ideas, feature requests, or want to contribute, let me know.&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

</description>
      <category>jsdocscribe</category>
      <category>node</category>
      <category>documentation</category>
      <category>cleancode</category>
    </item>
    <item>
      <title>Stop Writing JSDoc Comments Manually</title>
      <dc:creator>Chintan Goswami</dc:creator>
      <pubDate>Mon, 29 Jun 2026 07:44:49 +0000</pubDate>
      <link>https://dev.to/imchintoo/stop-writing-jsdoc-comments-manually-520o</link>
      <guid>https://dev.to/imchintoo/stop-writing-jsdoc-comments-manually-520o</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Documentation is one of those things every team agrees is important, but almost nobody enjoys writing.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;So I built &lt;a href="https://www.npmjs.com/package/jsdoc-scribe" rel="noopener noreferrer"&gt;JSDoc Scribe&lt;/a&gt;, an open-source npm package that automatically generates professional JSDoc comment blocks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Because developers should focus on writing software, not repetitive comments.&lt;/p&gt;

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

&lt;p&gt;✅ Functions&lt;br&gt;
✅ Classes&lt;br&gt;
✅ Methods&lt;br&gt;
✅ Interfaces&lt;br&gt;
✅ Variables&lt;br&gt;
✅ Constants&lt;br&gt;
✅ TypeScript Support&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Example&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;calculateTotal&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;items&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="cm"&gt;/**
 * Calculates the total...
 *
 * @param items
 * @returns
 */&lt;/span&gt;
&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nf"&gt;calculateTotal&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;items&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The project is still evolving, and I'd love your suggestions.&lt;/p&gt;

&lt;p&gt;npm: &lt;a href="https://www.npmjs.com/package/jsdoc-scribe" rel="noopener noreferrer"&gt;https://www.npmjs.com/package/jsdoc-scribe&lt;/a&gt;&lt;br&gt;&lt;br&gt;
GitHub: &lt;a href="https://github.com/imchintoo/jsdoc-scribe" rel="noopener noreferrer"&gt;https://github.com/imchintoo/jsdoc-scribe&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Happy coding!&lt;/p&gt;

</description>
      <category>documentation</category>
      <category>cleancode</category>
      <category>node</category>
      <category>typescript</category>
    </item>
  </channel>
</rss>
