<?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: Notedis</title>
    <description>The latest articles on DEV Community by Notedis (@notedisapp).</description>
    <link>https://dev.to/notedisapp</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%2F694590%2F210a3f54-472e-48ff-a11e-9b78e32c86ee.png</url>
      <title>DEV Community: Notedis</title>
      <link>https://dev.to/notedisapp</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/notedisapp"/>
    <language>en</language>
    <item>
      <title>Why I Built Another Feedback Tool</title>
      <dc:creator>Notedis</dc:creator>
      <pubDate>Fri, 31 Oct 2025 18:14:52 +0000</pubDate>
      <link>https://dev.to/notedisapp/why-i-built-another-feedback-tool-28e2</link>
      <guid>https://dev.to/notedisapp/why-i-built-another-feedback-tool-28e2</guid>
      <description>&lt;h2&gt;
  
  
  Why I Built Another Feedback Tool
&lt;/h2&gt;

&lt;p&gt;Let's be honest - the market doesn't need another feedback tool. But I needed one I could afford.&lt;/p&gt;

&lt;p&gt;As a freelance developer at Daring Designs, I was paying $59/month for Marker.io. Great tool, but the price stung every month. So I did what every developer does when faced with a recurring cost: "How hard could it be to build this myself?"&lt;/p&gt;

&lt;h2&gt;
  
  
  The Core Problem
&lt;/h2&gt;

&lt;p&gt;Most feedback tools fail not because of features, but because of friction. Clients don't want to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create another account&lt;/li&gt;
&lt;li&gt;Remember another password&lt;/li&gt;
&lt;li&gt;Learn another platform&lt;/li&gt;
&lt;li&gt;Check yet another tool for updates&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So I built &lt;a href="https://notedis.com" rel="noopener noreferrer"&gt;Notedis&lt;/a&gt; with one key feature: &lt;strong&gt;clients can reply via email, and their feedback automatically appears on visual boards.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Making It Dead Simple to Install
&lt;/h2&gt;

&lt;p&gt;One thing I learned from using feedback tools: if installation is complicated, people abandon it. I've seen tools that require OAuth flows, API key management, or complex configuration just to get started.&lt;/p&gt;

&lt;p&gt;For Notedis, I wanted it to be as simple as Google Analytics - just drop a script tag on your site and you're done.&lt;/p&gt;

&lt;h3&gt;
  
  
  The Installation Process
&lt;/h3&gt;

&lt;p&gt;When you create a site in Notedis, you get a unique widget key. Installation is literally just adding one line of code in the &lt;br&gt;
&lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; tag of your website like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;head&amp;gt;&lt;/span&gt;

  &lt;span class="c"&gt;&amp;lt;!-- Notedis Snippet --&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;script&amp;gt;&lt;/span&gt;
    &lt;span class="nb"&gt;window&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;notedisConfig&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="na"&gt;siteKey&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;site_xxxxxxxxxxxxxxxx&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
      &lt;span class="na"&gt;apiUrl&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="dl"&gt;'&lt;/span&gt;&lt;span class="s1"&gt;https://notedis.com&lt;/span&gt;&lt;span class="dl"&gt;'&lt;/span&gt;
    &lt;span class="p"&gt;};&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;script &lt;/span&gt;&lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://notedis.com/js/widget.js"&lt;/span&gt; &lt;span class="na"&gt;async&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;/script&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/head&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. No configuration objects, no initialization code, no API keys to manage. The widget automatically:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Loads asynchronously (won't block page rendering)&lt;/li&gt;
&lt;li&gt;Positions itself in the bottom-right corner&lt;/li&gt;
&lt;li&gt;Captures screenshots with native browser functions&lt;/li&gt;
&lt;li&gt;Handles the entire feedback flow&lt;/li&gt;
&lt;li&gt;Works across all modern browsers&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Why This Approach Works
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;For developers:&lt;/strong&gt; Copy, paste, ship. No documentation to read, no setup wizard to complete.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For clients:&lt;/strong&gt; The feedback button just appears. They click it, describe their issue, and they're done.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;For me:&lt;/strong&gt; Each site gets a unique key tied to their account, making it easy to route feedback to the right place and enforce subscription limits at the API level.&lt;/p&gt;

&lt;p&gt;The widget script is dynamically generated per site, so I can update the functionality globally without users needing to update their snippet.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Technical Challenge: Email-to-Platform Integration
&lt;/h2&gt;

&lt;p&gt;The hardest part wasn't the screenshot annotations or the visual boards - it was making email replies work reliably.&lt;/p&gt;

&lt;h3&gt;
  
  
  What I had to solve:
&lt;/h3&gt;

&lt;h4&gt;
  
  
  1. Email Parsing
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Handle different email clients (Gmail, Outlook, Apple Mail, etc.)&lt;/li&gt;
&lt;li&gt;Parse reply threading correctly&lt;/li&gt;
&lt;li&gt;Strip signatures and quoted text&lt;/li&gt;
&lt;li&gt;Handle forwards and BCCs&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  2. Mapping Replies to Feedback Items
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;Generate unique identifiers in email headers&lt;/li&gt;
&lt;li&gt;Handle out-of-order replies&lt;/li&gt;
&lt;li&gt;Preserve context across multiple replies&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Business Side
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Pricing:&lt;/strong&gt; $20/month (vs $59+ for competitors)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Trial:&lt;/strong&gt; 14 days with usage-based limits (1 site, 30 feedback items) so users can properly evaluate it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Target Market:&lt;/strong&gt; Freelancers and small agencies who need core functionality without enterprise bloat.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Current Status:&lt;/strong&gt; Launched on Product Hunt, got first paying customers who aren't friends/family. Small wins, but feels huge as a solo builder.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;p&gt;Kept it lean to minimize costs:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Laravel backend for email processing&lt;/li&gt;
&lt;li&gt;Canvas API for screenshot annotations&lt;/li&gt;
&lt;li&gt;Webhook integration for incoming emails&lt;/li&gt;
&lt;li&gt;Minimal infrastructure overhead&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What I'd Do Differently
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Validate pricing earlier&lt;/strong&gt; - Still not sure if $20/mo is the sweet spot&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build email integration first&lt;/strong&gt; - It became the selling point but was the hardest part&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  For Other Indie Devs
&lt;/h2&gt;

&lt;p&gt;If you're thinking about building a SaaS to replace an expensive tool you use:&lt;/p&gt;

&lt;p&gt;✅ &lt;strong&gt;Do it if:&lt;/strong&gt; You understand the problem deeply and have a clear differentiator&lt;br&gt;
❌ &lt;strong&gt;Don't if:&lt;/strong&gt; You're just competing on price alone&lt;/p&gt;

&lt;p&gt;The "cheaper alternative" only works if you're solving a real pain point for an underserved market.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;p&gt;If you're managing client feedback and tired of the friction, check out &lt;a href="https://notedis.com" rel="noopener noreferrer"&gt;notedis.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Would love feedback from fellow devs - especially on the email integration approach. How would you have tackled this differently?&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Questions for the community:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Have you built email-to-platform integrations? What were your biggest challenges?&lt;/li&gt;
&lt;li&gt;What's your take on competing with established players on price vs features?&lt;/li&gt;
&lt;li&gt;Any tips for solo devs doing SaaS marketing on a budget?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Drop your thoughts below! 👇&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>laravel</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
