<?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: Sachin Kumar</title>
    <description>The latest articles on DEV Community by Sachin Kumar (@sachusorav).</description>
    <link>https://dev.to/sachusorav</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%2F3860614%2Fad7fa79f-18cf-4c2c-a163-1ac36505e6af.jpeg</url>
      <title>DEV Community: Sachin Kumar</title>
      <link>https://dev.to/sachusorav</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sachusorav"/>
    <language>en</language>
    <item>
      <title>I built a no-login, self-destructing file sharing app with Next.js 15</title>
      <dc:creator>Sachin Kumar</dc:creator>
      <pubDate>Sat, 04 Apr 2026 07:50:45 +0000</pubDate>
      <link>https://dev.to/sachusorav/i-built-a-no-login-self-destructing-file-sharing-app-with-nextjs-15-3h6m</link>
      <guid>https://dev.to/sachusorav/i-built-a-no-login-self-destructing-file-sharing-app-with-nextjs-15-3h6m</guid>
      <description>&lt;p&gt;From a College Lab Problem to a Full-Stack Product — Building VioraShare&lt;br&gt;
The Problem&lt;/p&gt;

&lt;p&gt;I had a simple problem in my college lab… and it turned into a full-stack product.&lt;/p&gt;

&lt;p&gt;Every time I needed to transfer files, I had to log into my personal accounts on public systems — which never felt safe.&lt;/p&gt;

&lt;p&gt;Google Drive needed login.&lt;br&gt;
WeTransfer needed email.&lt;br&gt;
Dropbox pushed subscriptions.&lt;/p&gt;

&lt;p&gt;So I thought:&lt;/p&gt;

&lt;p&gt;What if I could just create a temporary room, upload files, and access them from my phone — no login, no trace?&lt;/p&gt;

&lt;p&gt;That’s how VioraShare was born — a minimal, secure file-sharing web app solving this exact problem.&lt;/p&gt;

&lt;p&gt;🔗 What is VioraShare?&lt;/p&gt;

&lt;p&gt;VioraShare is a temporary file-sharing tool built around disposable rooms:&lt;br&gt;
Create a room in under 10 seconds&lt;br&gt;
Set expiry: 15 minutes, 1 hour, or 24 hours&lt;br&gt;
Protect it with a passcode&lt;br&gt;
Share the Room ID&lt;br&gt;
Everything disappears after expiry&lt;/p&gt;

&lt;p&gt;No login. No email. No tracking. Zero PII stored.&lt;/p&gt;

&lt;p&gt;🛠 Tech Stack&lt;br&gt;
Next.js 15 (App Router)&lt;br&gt;
Vercel Blob (file storage)&lt;br&gt;
PostgreSQL + Prisma&lt;br&gt;
Tailwind CSS + Framer Motion&lt;br&gt;
Bcrypt (secure passcode hashing)&lt;br&gt;
🧠 The Hardest Engineering Problem&lt;/p&gt;

&lt;p&gt;Designing for zero persistent user accounts.&lt;br&gt;
Most systems rely on users, sessions, and tokens.&lt;br&gt;
But here, the room itself becomes the identity.&lt;/p&gt;

&lt;p&gt;This meant:&lt;br&gt;
No JWTs&lt;br&gt;
No session cookies&lt;br&gt;
Every request validated via passcode&lt;br&gt;
Automatic cleanup using cascade deletes&lt;/p&gt;

&lt;p&gt;🎨 UI Philosophy&lt;br&gt;
I didn’t want it to feel like a “free tool.”&lt;br&gt;
I wanted it to feel premium.&lt;br&gt;
Glassmorphism UI&lt;br&gt;
Smooth animations with Framer Motion&lt;br&gt;
Dark theme with neon accents&lt;br&gt;
⚡ The Real Shift (What Surprised Me Most)&lt;/p&gt;

&lt;p&gt;What surprised me wasn’t the idea…&lt;/p&gt;

&lt;p&gt;It was how fast execution became.&lt;/p&gt;

&lt;p&gt;Traditionally, building something like this involves:&lt;/p&gt;

&lt;p&gt;Planning architecture&lt;br&gt;
Designing UI/UX&lt;br&gt;
Writing frontend &amp;amp; backend&lt;br&gt;
Debugging&lt;br&gt;
Deployment&lt;/p&gt;

&lt;p&gt;And yes — all of that still matters.&lt;/p&gt;

&lt;p&gt;But here’s the shift:&lt;/p&gt;

&lt;p&gt;⚡ AI is changing how fast we can build&lt;/p&gt;

&lt;p&gt;From generating structure → refining UI → fixing bugs → speeding iterations,&lt;/p&gt;

&lt;p&gt;AI acted like a powerful assistant, not a replacement.&lt;/p&gt;

&lt;p&gt;💡 My Biggest Takeaways&lt;br&gt;
Ideas are no longer the hard part&lt;br&gt;
Execution is faster than ever&lt;br&gt;
The real skill is knowing how to use tools effectively&lt;/p&gt;

&lt;p&gt;If you have an idea:&lt;br&gt;
Don’t overthink it.&lt;br&gt;
Research it. Shape it.&lt;br&gt;
And start building.&lt;/p&gt;

&lt;p&gt;Because today, the distance between idea → live product is smaller than ever.&lt;br&gt;
And that’s a huge opportunity.&lt;/p&gt;

&lt;p&gt;✅ What’s Live Today&lt;br&gt;
File upload &amp;amp; download&lt;br&gt;
Drag &amp;amp; drop&lt;br&gt;
QR code sharing&lt;br&gt;
Shared clipboard&lt;br&gt;
Room chat&lt;br&gt;
Self-destruct downloads&lt;/p&gt;

&lt;p&gt;🌐 Try It&lt;br&gt;
👉 &lt;a href="https://viorashare.online" rel="noopener noreferrer"&gt;https://viorashare.online&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love feedback, security reviews, or architecture suggestions!&lt;br&gt;
Built by Sachin Kumar — solo developer, building in public.&lt;/p&gt;

&lt;p&gt;🔖 Tags&lt;/p&gt;

&lt;h1&gt;
  
  
  BuildInPublic #WebDevelopment #AI #FullStack #Students #Innovation #Tech
&lt;/h1&gt;

</description>
      <category>nextjs</category>
      <category>webdev</category>
      <category>privacy</category>
      <category>buildinpublic</category>
    </item>
  </channel>
</rss>
