<?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>Forem: David Dushi</title>
    <description>The latest articles on Forem by David Dushi (@davedushi).</description>
    <link>https://forem.com/davedushi</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%2F3573011%2F8b7f3db5-7b29-4c9e-a026-e977da96b42f.png</url>
      <title>Forem: David Dushi</title>
      <link>https://forem.com/davedushi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/davedushi"/>
    <language>en</language>
    <item>
      <title>Nitro V3 is Here</title>
      <dc:creator>David Dushi</dc:creator>
      <pubDate>Tue, 04 Nov 2025 19:48:53 +0000</pubDate>
      <link>https://forem.com/davedushi/nitro-v3-is-here-3h63</link>
      <guid>https://forem.com/davedushi/nitro-v3-is-here-3h63</guid>
      <description>&lt;h3&gt;
  
  
  Intro
&lt;/h3&gt;

&lt;p&gt;I recently came across &lt;a href="https://v3.nitro.build/" rel="noopener noreferrer"&gt;Nitro&lt;/a&gt; after noticing they just dropped a new alpha version, I had no idea what it is or what it does, so I decided to learn and write about it. &lt;/p&gt;

&lt;p&gt;Some interesting facts you might not know about Nitro:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It's part of the &lt;a href="https://unjs.io/" rel="noopener noreferrer"&gt;UnJs&lt;/a&gt; project a collection of framework-agnostic JavaScript libraries built to work anywhere.&lt;/li&gt;
&lt;li&gt; It's leveraged by popular frameworks such as Nuxt, SolidStart and TanStack Start.&lt;/li&gt;
&lt;li&gt;It’s designed to run on any runtime, from Node.js to serverless and edge environments, with almost zero configuration.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In this post, we’ll cover a brief overview of what makes Nitro stand out — especially what’s new in V3 — explore its open-source community, walk through a short video tutorial on how to get started, and finish with a few bonus project ideas you can build.&lt;/p&gt;

&lt;h3&gt;
  
  
  So, what exactly is Nitro?
&lt;/h3&gt;

&lt;p&gt;In short, Nitro is a production-ready server designed to complement your Vite frontend — letting you go full full-stack with a single optimized output folder (a new feature in V3) — or act as a standalone backend on its own. Being runtime-agnostic, it allows you to deploy your app almost anywhere: Vercel, Netlify, Cloudflare Workers, or traditional servers.&lt;/p&gt;

&lt;p&gt;Nitro goes beyond being just another server framework like Express — it’s more of a complete backend engine for modern web apps. Out of the box, it provides unified APIs for database and key-value storage, built-in caching, scheduled tasks, and a flexible plugin system. These abstractions make it easy to add data persistence, background jobs, and integrations without complex setup. In practice, this means you can build and deploy a fully featured app with far less boilerplate — all while keeping your stack lightweight, modular, and runtime-agnostic.&lt;/p&gt;

&lt;h3&gt;
  
  
  Let’s Talk Open Source
&lt;/h3&gt;

&lt;p&gt;⭐ 9.1k Stars 👥 318 Contributors 📜 MIT License 🐞 400+ Open Issues 💬 Active Discord 💻 TypeScript&lt;/p&gt;

&lt;p&gt;Nitro is a highly active and well-maintained open-source project. Its Discord community is full of developers asking questions, sharing ideas, and helping each other troubleshoot. The recent V3 release has brought even more momentum — new features mean new chances to test, contribute, and shape the project’s direction. Whether you’re reporting a bug, improving documentation, or experimenting with an adapter or preset, there’s plenty of space to get involved and make an impact.&lt;/p&gt;

&lt;h3&gt;
  
  
  Building an X post habit tracker with Vite + Nitro
&lt;/h3&gt;

&lt;p&gt;

  &lt;iframe src="https://www.youtube.com/embed/0o1JJXRfkX4"&gt;
  &lt;/iframe&gt;


&lt;/p&gt;

&lt;h3&gt;
  
  
  🎁 &lt;strong&gt;Bonus Project Ideas&lt;/strong&gt;
&lt;/h3&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;1. Link Shortener API&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Use &lt;strong&gt;Nitro’s server routes&lt;/strong&gt; to create short links and handle redirects.&lt;br&gt;
Store data using the built-in &lt;strong&gt;KV storage&lt;/strong&gt; or &lt;strong&gt;SQLite&lt;/strong&gt; and add a simple &lt;strong&gt;Vite frontend&lt;/strong&gt; to enter and display links.&lt;/p&gt;

&lt;p&gt;🪄 &lt;em&gt;Learn:&lt;/em&gt; Routing, data storage, and deployment presets (Vercel/Netlify).&lt;/p&gt;




&lt;h4&gt;
  
  
  &lt;strong&gt;2. Quote of the Day API (with an AI Twist)&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Build a small &lt;strong&gt;REST&lt;/strong&gt; or &lt;strong&gt;GraphQL API&lt;/strong&gt; with Nitro that returns random quotes.&lt;br&gt;
Start with a static JSON file or SQLite database for storage — or take it a step further by integrating an &lt;strong&gt;AI model&lt;/strong&gt; (like OpenAI’s GPT API) to generate fresh, original quotes on demand.&lt;br&gt;
You can also categorize quotes by theme (&lt;em&gt;inspiration, humor, tech,&lt;/em&gt; etc.) and &lt;strong&gt;cache AI responses&lt;/strong&gt; using Nitro’s key-value storage for faster responses.&lt;/p&gt;

&lt;p&gt;🪄 &lt;em&gt;Learn:&lt;/em&gt; Server routes, API response handling, AI API integration, and edge deployment.&lt;/p&gt;




&lt;h4&gt;
  
  
  &lt;strong&gt;3. AI Prompt Library / API&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Create a small &lt;strong&gt;REST API&lt;/strong&gt; using Nitro that returns categorized prompts for AI tools.&lt;br&gt;
Allow adding new prompts via &lt;strong&gt;POST&lt;/strong&gt; endpoints, and store data in &lt;strong&gt;SQLite&lt;/strong&gt; or &lt;strong&gt;file-based storage&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;🪄 &lt;em&gt;Learn:&lt;/em&gt; CRUD endpoints, API design, and building lightweight backends.&lt;/p&gt;




&lt;h4&gt;
  
  
  &lt;strong&gt;4. Nitro-Powered Chat App&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Use &lt;strong&gt;Nitro&lt;/strong&gt; as the backend to handle &lt;strong&gt;WebSockets&lt;/strong&gt; or &lt;strong&gt;Server-Sent Events (SSE)&lt;/strong&gt; for real-time messaging.&lt;br&gt;
Build a &lt;strong&gt;Vite-based frontend&lt;/strong&gt; for the chat UI, and store messages in &lt;strong&gt;Redis&lt;/strong&gt; or &lt;strong&gt;SQLite&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;🪄 &lt;em&gt;Learn:&lt;/em&gt; Real-time updates, state management, data persistence, and deployment scaling.&lt;/p&gt;




&lt;h4&gt;
  
  
  &lt;strong&gt;5. Full-Stack SaaS Starter&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Combine &lt;strong&gt;Nitro&lt;/strong&gt; and &lt;strong&gt;Vite&lt;/strong&gt; to create a modern full-stack SaaS starter.&lt;br&gt;
Nitro handles &lt;strong&gt;authentication&lt;/strong&gt;, &lt;strong&gt;database&lt;/strong&gt;, and &lt;strong&gt;API logic&lt;/strong&gt;, while Vite powers the frontend with frameworks like &lt;strong&gt;Vue&lt;/strong&gt;, &lt;strong&gt;React&lt;/strong&gt;, or &lt;strong&gt;Svelte&lt;/strong&gt;.&lt;br&gt;
Deploy seamlessly to &lt;strong&gt;Vercel&lt;/strong&gt; or &lt;strong&gt;Cloudflare&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;🪄 &lt;em&gt;Learn:&lt;/em&gt; Auth flows, SSR + API integration, and production-grade deployment.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>typescript</category>
      <category>opensource</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
